From efd9318c65369c27556db3f491decc67c354c95f Mon Sep 17 00:00:00 2001 From: bogdan Date: Sun, 16 Apr 2023 20:51:46 +0200 Subject: [PATCH] added script for compile one file firmware --- combine.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 combine.sh diff --git a/combine.sh b/combine.sh new file mode 100755 index 0000000..146796b --- /dev/null +++ b/combine.sh @@ -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