feat(bootloader): add an example that implements multiboot

Add a new example for the bootloader that shows how to override it to implement multiboot.
This commit is contained in:
Omar Chebib
2024-12-12 13:56:02 +08:00
parent 28f1b18675
commit 840eef31ce
11 changed files with 433 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
# Name, Type, SubType, Offset, Size, Flags
# Note: if you have increased the bootloader size, make sure to update the offsets to avoid overlap
default, app, factory, 0x10000, 256K,
hello_world, app, ota_0, , 256K,
console, app, ota_1, , 1M,
# Required by the console example
nvs, data, nvs, , 32K,
1 # Name, Type, SubType, Offset, Size, Flags
2 # Note: if you have increased the bootloader size, make sure to update the offsets to avoid overlap
3 default, app, factory, 0x10000, 256K,
4 hello_world, app, ota_0, , 256K,
5 console, app, ota_1, , 1M,
6 # Required by the console example
7 nvs, data, nvs, , 32K,