Skip to content

Commit 23a6947

Browse files
committed
Partitions in the root
1 parent d4987d3 commit 23a6947

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/build_boards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
name: microlite-esp32-${{ matrix.board_type }}-firmware
4444
path: |
4545
./boards/${{ matrix.board_type }}/build/bootloader/bootloader.bin
46-
./boards/${{ matrix.board_type }}/build/partition_table/partition-table.bin # yamllint disable-line rule:line-length
46+
./boards/${{ matrix.board_type }}/build/partition_table/partition-table.bin
4747
./boards/${{ matrix.board_type }}/build/micropython.bin
4848
./boards/${{ matrix.board_type }}/build/micropython.elf
4949
Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1+
# This partition table is for devices with 4MiB or more of flash.
2+
# The first 2MiB is used for bootloader, nvs, phy_init and firmware.
3+
# The remaining flash is for the user filesystem(s).
4+
15
# Notes: the offset of the partition table itself is set in
26
# $IDF_PATH/components/partition_table/Kconfig.projbuild.
37
# Name, Type, SubType, Offset, Size, Flags
48
nvs, data, nvs, 0x9000, 0x6000,
59
phy_init, data, phy, 0xf000, 0x1000,
6-
factory, app, factory, 0x10000, 0x240000,
7-
vfs, data, fat, 0x250000, 0x5B0000,
10+
factory, app, factory, 0x10000, 0x1F0000,

0 commit comments

Comments
 (0)