bigger partitions, port to -v5 boards

This commit is contained in:
Thaddeus Hughes
2026-04-21 15:14:14 -05:00
parent b0b317a0fe
commit a775999c87
60 changed files with 1164 additions and 22 deletions

View File

@@ -1,10 +1,13 @@
# ESP32 Partition Table - 8MB (0x800000) Flash with OTA Support
# App partitions must be offset-aligned to 0x10000 (64K). 1984K = 0x1F0000.
# log is sized to exactly 4 MB (0x400000) at 0x4000000x800000; 28K gap
# between params and log absorbs the 64K-alignment remainder on OTA slots.
# Name, Type, SubType, Offset, Size, Flags
nvs, data, nvs, 0x9000, 0x4000,
otadata, data, ota, 0xd000, 0x2000,
phy_init, data, phy, 0xf000, 0x1000,
ota_0, app, ota_0, 0x10000, 1536K,
ota_1, app, ota_1, 0x190000, 1536K,
post_test, data, 0x42, 0x310000, 4K,
params, data, 0x40, 0x311000, 16K,
log, data, 0x41, 0x315000, 4916K,
ota_0, app, ota_0, 0x10000, 1984K,
ota_1, app, ota_1, 0x200000, 1984K,
post_test, data, 0x42, 0x3F0000, 4K,
params, data, 0x40, 0x3F1000, 32K,
log, data, 0x41, 0x400000, 4096K,
1 # ESP32 Partition Table - 8MB (0x800000) Flash with OTA Support
2 # App partitions must be offset-aligned to 0x10000 (64K). 1984K = 0x1F0000.
3 # log is sized to exactly 4 MB (0x400000) at 0x400000–0x800000; 28K gap
4 # between params and log absorbs the 64K-alignment remainder on OTA slots.
5 # Name, Type, SubType, Offset, Size, Flags
6 nvs, data, nvs, 0x9000, 0x4000,
7 otadata, data, ota, 0xd000, 0x2000,
8 phy_init, data, phy, 0xf000, 0x1000,
9 ota_0, app, ota_0, 0x10000, 1536K, ota_0, app, ota_0, 0x10000, 1984K,
10 ota_1, app, ota_1, 0x190000, 1536K, ota_1, app, ota_1, 0x200000, 1984K,
11 post_test, data, 0x42, 0x310000, 4K, post_test, data, 0x42, 0x3F0000, 4K,
12 params, data, 0x40, 0x311000, 16K, params, data, 0x40, 0x3F1000, 32K,
13 log, data, 0x41, 0x315000, 4916K, log, data, 0x41, 0x400000, 4096K,