From 84fdbccaf075d331c86636220e345b7afdffe784 Mon Sep 17 00:00:00 2001 From: Marius Vikhammer Date: Thu, 14 May 2026 09:54:27 +0800 Subject: [PATCH] fix(examples): raise efuse ESP32-P4 CI partition offset for larger bootloader Recovery bootloader support increased the ESP32-P4 bootloader image enough that it no longer fits before 0xe000. Moving the partition table to 0x10000 restores slack for CI builds using secure boot and flash encryption together. Co-authored-by: Cursor --- examples/system/efuse/sdkconfig.ci.virt_sb_v2_and_fe.esp32p4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/system/efuse/sdkconfig.ci.virt_sb_v2_and_fe.esp32p4 b/examples/system/efuse/sdkconfig.ci.virt_sb_v2_and_fe.esp32p4 index 27475f7a278..6eb3a1c4c0e 100644 --- a/examples/system/efuse/sdkconfig.ci.virt_sb_v2_and_fe.esp32p4 +++ b/examples/system/efuse/sdkconfig.ci.virt_sb_v2_and_fe.esp32p4 @@ -2,7 +2,7 @@ CONFIG_IDF_TARGET="esp32p4" -CONFIG_PARTITION_TABLE_OFFSET=0xE000 +CONFIG_PARTITION_TABLE_OFFSET=0x10000 CONFIG_PARTITION_TABLE_CUSTOM=y CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="test/partitions_efuse_emul.csv"