2019-01-22 03:45:45 +00:00
|
|
|
if(NOT BOOTLOADER_BUILD)
|
2018-08-16 05:01:43 +00:00
|
|
|
set(PARTITION_TABLE_OFFSET ${CONFIG_PARTITION_TABLE_OFFSET})
|
|
|
|
|
|
|
|
# Set PARTITION_CSV_PATH to the configured partition CSV file
|
|
|
|
# absolute path
|
|
|
|
if(CONFIG_PARTITION_TABLE_CUSTOM)
|
|
|
|
# Custom filename expands any path relative to the project
|
2018-11-11 07:36:10 +00:00
|
|
|
get_filename_component(PARTITION_CSV_PATH "${CONFIG_PARTITION_TABLE_FILENAME}"
|
|
|
|
ABSOLUTE BASE_DIR "${IDF_PROJECT_PATH}")
|
2018-08-16 05:01:43 +00:00
|
|
|
|
|
|
|
if(NOT EXISTS "${PARTITION_CSV_PATH}")
|
2018-08-20 08:24:18 +00:00
|
|
|
message(WARNING "Partition table CSV file ${PARTITION_CSV_PATH} not found. "
|
|
|
|
"Change custom partition CSV path in menuconfig.")
|
2018-08-27 03:55:04 +00:00
|
|
|
# Note: partition_table CMakeLists.txt contains some logic to create a dummy
|
|
|
|
# partition_table target in this case, see comments in that file.
|
2018-08-16 05:01:43 +00:00
|
|
|
endif()
|
|
|
|
else()
|
|
|
|
# Other .csv files are always in the component directory
|
|
|
|
get_filename_component(PARTITION_CSV_PATH "${COMPONENT_PATH}/${CONFIG_PARTITION_TABLE_FILENAME}" ABSOLUTE)
|
|
|
|
|
|
|
|
if(NOT EXISTS "${PARTITION_CSV_PATH}")
|
|
|
|
message(FATAL_ERROR "Internal error, built-in ${PARTITION_CSV_PATH} not found.")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# need to re-run CMake if the partition CSV changes, as the offsets/sizes of partitions may change
|
|
|
|
set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS ${PARTITION_CSV_PATH})
|
|
|
|
|
2019-01-22 03:45:45 +00:00
|
|
|
# partition_table_get_partition_info
|
|
|
|
#
|
|
|
|
# Get information about a partition from the partition table
|
|
|
|
function(partition_table_get_partition_info result get_part_info_args part_info)
|
2018-08-20 00:47:42 +00:00
|
|
|
separate_arguments(get_part_info_args)
|
2018-08-27 10:02:30 +00:00
|
|
|
execute_process(COMMAND ${PYTHON}
|
2019-01-22 03:45:45 +00:00
|
|
|
${IDF_PATH}/components/partition_table/parttool.py -q
|
2018-08-20 08:24:18 +00:00
|
|
|
--partition-table-offset ${PARTITION_TABLE_OFFSET}
|
2018-11-15 20:59:37 +00:00
|
|
|
--partition-table-file ${PARTITION_CSV_PATH}
|
|
|
|
${get_part_info_args} get_partition_info --info ${part_info}
|
2019-01-22 03:45:45 +00:00
|
|
|
OUTPUT_VARIABLE info
|
2018-08-20 08:24:18 +00:00
|
|
|
RESULT_VARIABLE exit_code
|
2018-08-20 00:47:42 +00:00
|
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
2018-08-20 08:24:18 +00:00
|
|
|
if(NOT ${exit_code} EQUAL 0 AND NOT ${exit_code} EQUAL 1)
|
|
|
|
# can't fail here as it would prevent the user from running 'menuconfig' again
|
|
|
|
message(WARNING "parttool.py execution failed (${result}), problem with partition CSV file (see above)")
|
|
|
|
endif()
|
2019-01-22 03:45:45 +00:00
|
|
|
set(${result} ${info} PARENT_SCOPE)
|
2018-08-20 00:47:42 +00:00
|
|
|
endfunction()
|
2018-08-16 05:01:43 +00:00
|
|
|
endif()
|
2018-10-19 19:02:55 +00:00
|
|
|
|