Merge branch 'bugfix/anti_rollback_without_test_app' into 'master'

bootloader: Anti-rollback mode doesn't run test_app

See merge request espressif/esp-idf!12225
This commit is contained in:
Angus Gratton
2021-02-09 14:16:51 +08:00
3 changed files with 6 additions and 4 deletions
+3 -2
View File
@@ -14,10 +14,11 @@ if(NOT BOOTLOADER_BUILD)
# If anti-rollback option is set then factory partition should not be in Partition Table.
# In this case, should be used the partition table with two ota app without the factory.
partition_table_get_partition_info(factory_offset "--partition-type app --partition-subtype factory" "offset")
if(CONFIG_BOOTLOADER_APP_ANTI_ROLLBACK AND factory_offset)
partition_table_get_partition_info(test_offset "--partition-type app --partition-subtype test" "offset")
if(CONFIG_BOOTLOADER_APP_ANTI_ROLLBACK AND (factory_offset OR test_offset))
fail_at_build_time(check_table_contents "\
ERROR: Anti-rollback option is enabled. Partition table should \
consist of two ota app without factory partition.")
consist of two ota app without factory or test partitions.")
add_dependencies(app check_table_contents)
endif()