added script for compile one file firmware

This commit is contained in:
Bogdan Pilyugin 2023-04-16 20:51:46 +02:00
parent 21c63bcadd
commit efd9318c65

7
combine.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/sh
esptool.py --chip esp32 merge_bin \
--output ./build/webguiapp_combined.bin \
0x1000 ./build/bootloader/bootloader.bin \
0x8000 ./build/partition_table/partition-table.bin \
0x11000 ./build/ota_data_initial.bin \
0x20000 ./build/webguiapp_ref_implement.bin