2021-09-21 22:32:54 +00:00
|
|
|
# fatfs_create_partition_image
|
|
|
|
#
|
|
|
|
# Create a fatfs image of the specified directory on the host during build and optionally
|
|
|
|
# have the created image flashed using `idf.py flash`
|
|
|
|
function(fatfs_create_partition_image partition base_dir)
|
2022-03-17 17:02:16 +00:00
|
|
|
set(options FLASH_IN_PROJECT WL_INIT PRESERVE_TIME)
|
2021-09-21 22:32:54 +00:00
|
|
|
cmake_parse_arguments(arg "${options}" "" "${multi}" "${ARGN}")
|
|
|
|
|
2021-09-21 22:32:54 +00:00
|
|
|
|
2021-09-21 22:32:54 +00:00
|
|
|
idf_build_get_property(idf_path IDF_PATH)
|
|
|
|
idf_build_get_property(python PYTHON)
|
|
|
|
|
2021-09-21 22:32:54 +00:00
|
|
|
if(arg_WL_INIT)
|
|
|
|
set(fatfsgen_py ${python} ${idf_path}/components/fatfs/wl_fatfsgen.py)
|
|
|
|
else()
|
|
|
|
set(fatfsgen_py ${python} ${idf_path}/components/fatfs/fatfsgen.py)
|
|
|
|
endif()
|
2021-09-21 22:32:54 +00:00
|
|
|
|
2022-03-17 17:02:16 +00:00
|
|
|
if(arg_PRESERVE_TIME)
|
|
|
|
set(default_datetime_option)
|
|
|
|
else()
|
|
|
|
set(default_datetime_option --use_default_datetime)
|
|
|
|
endif()
|
|
|
|
|
2021-12-06 17:17:20 +00:00
|
|
|
if("${CONFIG_FATFS_SECTOR_512}")
|
|
|
|
set(fatfs_sector_size 512)
|
|
|
|
elseif("${CONFIG_FATFS_SECTOR_1024}")
|
|
|
|
set(fatfs_sector_size 1024)
|
|
|
|
elseif("${CONFIG_FATFS_SECTOR_2048}")
|
|
|
|
set(fatfs_sector_size 2048)
|
|
|
|
else()
|
|
|
|
set(fatfs_sector_size 4096)
|
|
|
|
endif()
|
|
|
|
|
2022-02-09 15:09:09 +00:00
|
|
|
if("${CONFIG_FATFS_LFN_NONE}")
|
|
|
|
set(fatfs_long_names_option)
|
|
|
|
elseif("${CONFIG_FATFS_LFN_HEAP}")
|
|
|
|
set(fatfs_long_names_option --long_name_support)
|
|
|
|
elseif("${CONFIG_FATFS_LFN_STACK}")
|
|
|
|
set(fatfs_long_names_option --long_name_support)
|
|
|
|
endif()
|
2021-12-06 17:17:20 +00:00
|
|
|
|
2021-09-21 22:32:54 +00:00
|
|
|
get_filename_component(base_dir_full_path ${base_dir} ABSOLUTE)
|
|
|
|
partition_table_get_partition_info(size "--partition-name ${partition}" "size")
|
|
|
|
partition_table_get_partition_info(offset "--partition-name ${partition}" "offset")
|
|
|
|
|
|
|
|
if("${size}" AND "${offset}")
|
|
|
|
set(image_file ${CMAKE_BINARY_DIR}/${partition}.bin)
|
|
|
|
# Execute FATFS image generation; this always executes as there is no way to specify for CMake to watch for
|
|
|
|
# contents of the base dir changing.
|
|
|
|
add_custom_target(fatfs_${partition}_bin ALL
|
|
|
|
COMMAND ${fatfsgen_py} ${base_dir_full_path}
|
2022-02-09 15:09:09 +00:00
|
|
|
${fatfs_long_names_option}
|
2022-03-17 17:02:16 +00:00
|
|
|
${default_datetime_option}
|
2021-09-21 22:32:54 +00:00
|
|
|
--partition_size ${size}
|
|
|
|
--output_file ${image_file}
|
2021-12-06 17:17:20 +00:00
|
|
|
--sector_size "${fatfs_sector_size}"
|
2021-09-21 22:32:54 +00:00
|
|
|
)
|
|
|
|
set_property(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" APPEND PROPERTY
|
|
|
|
ADDITIONAL_MAKE_CLEAN_FILES
|
|
|
|
${image_file})
|
|
|
|
|
|
|
|
idf_component_get_property(main_args esptool_py FLASH_ARGS)
|
|
|
|
idf_component_get_property(sub_args esptool_py FLASH_SUB_ARGS)
|
|
|
|
# Last (optional) parameter is the encryption for the target. In our
|
|
|
|
# case, fatfs is not encrypt so pass FALSE to the function.
|
|
|
|
esptool_py_flash_target(${partition}-flash "${main_args}" "${sub_args}" ALWAYS_PLAINTEXT)
|
|
|
|
esptool_py_flash_to_partition(${partition}-flash "${partition}" "${image_file}")
|
|
|
|
|
|
|
|
add_dependencies(${partition}-flash fatfs_${partition}_bin)
|
|
|
|
if(arg_FLASH_IN_PROJECT)
|
|
|
|
esptool_py_flash_to_partition(flash "${partition}" "${image_file}")
|
|
|
|
add_dependencies(flash fatfs_${partition}_bin)
|
|
|
|
endif()
|
|
|
|
else()
|
|
|
|
set(message "Failed to create FATFS image for partition '${partition}'. "
|
|
|
|
"Check project configuration if using the correct partition table file.")
|
|
|
|
fail_at_build_time(fatfs_${partition}_bin "${message}")
|
|
|
|
endif()
|
|
|
|
endfunction()
|
2021-09-21 22:32:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
function(fatfs_create_rawflash_image partition base_dir)
|
2022-03-17 17:02:16 +00:00
|
|
|
set(options FLASH_IN_PROJECT PRESERVE_TIME)
|
2021-09-21 22:32:54 +00:00
|
|
|
cmake_parse_arguments(arg "${options}" "" "${multi}" "${ARGN}")
|
2022-03-17 17:02:16 +00:00
|
|
|
|
2021-09-21 22:32:54 +00:00
|
|
|
if(arg_FLASH_IN_PROJECT)
|
2022-03-17 17:02:16 +00:00
|
|
|
if(arg_PRESERVE_TIME)
|
|
|
|
fatfs_create_partition_image(${partition} ${base_dir} FLASH_IN_PROJECT PRESERVE_TIME)
|
|
|
|
else()
|
|
|
|
fatfs_create_partition_image(${partition} ${base_dir} FLASH_IN_PROJECT)
|
|
|
|
endif()
|
2021-09-21 22:32:54 +00:00
|
|
|
else()
|
2022-03-17 17:02:16 +00:00
|
|
|
if(arg_PRESERVE_TIME)
|
|
|
|
fatfs_create_partition_image(${partition} ${base_dir} PRESERVE_TIME)
|
|
|
|
else()
|
|
|
|
fatfs_create_partition_image(${partition} ${base_dir})
|
|
|
|
endif()
|
2021-09-21 22:32:54 +00:00
|
|
|
endif()
|
|
|
|
endfunction()
|
|
|
|
|
|
|
|
function(fatfs_create_spiflash_image partition base_dir)
|
2022-03-17 17:02:16 +00:00
|
|
|
set(options FLASH_IN_PROJECT PRESERVE_TIME)
|
2021-09-21 22:32:54 +00:00
|
|
|
cmake_parse_arguments(arg "${options}" "" "${multi}" "${ARGN}")
|
2022-03-17 17:02:16 +00:00
|
|
|
|
2021-09-21 22:32:54 +00:00
|
|
|
if(arg_FLASH_IN_PROJECT)
|
2022-03-17 17:02:16 +00:00
|
|
|
if(arg_PRESERVE_TIME)
|
|
|
|
fatfs_create_partition_image(${partition} ${base_dir} FLASH_IN_PROJECT WL_INIT PRESERVE_TIME)
|
|
|
|
else()
|
|
|
|
fatfs_create_partition_image(${partition} ${base_dir} FLASH_IN_PROJECT WL_INIT)
|
|
|
|
endif()
|
2021-09-21 22:32:54 +00:00
|
|
|
else()
|
2022-03-17 17:02:16 +00:00
|
|
|
if(arg_PRESERVE_TIME)
|
|
|
|
fatfs_create_partition_image(${partition} ${base_dir} WL_INIT PRESERVE_TIME)
|
|
|
|
else()
|
|
|
|
fatfs_create_partition_image(${partition} ${base_dir} WL_INIT)
|
|
|
|
endif()
|
2021-09-21 22:32:54 +00:00
|
|
|
endif()
|
|
|
|
endfunction()
|