From acfbe202b6fdbd01347d0cf8b0bd312bae930533 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20G=C3=B6ttgens?= Date: Thu, 24 Nov 2022 12:33:19 +0100 Subject: [PATCH] include alternative update bin without bootloader and settings --- bin/build-esp32.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bin/build-esp32.sh b/bin/build-esp32.sh index 5a2044a35..6068eb256 100755 --- a/bin/build-esp32.sh +++ b/bin/build-esp32.sh @@ -29,6 +29,10 @@ echo "Copying ESP32 bin file" SRCBIN=.pio/build/$1/firmware.factory.bin cp $SRCBIN $OUTDIR/$basename.bin +echo "Copying ESP32 update bin file" +SRCBIN=.pio/build/$1/firmware.bin +cp $SRCBIN $OUTDIR/$basename-update.bin + echo "Building Filesystem for ESP32 targets" pio run --environment tbeam -t buildfs cp .pio/build/tbeam/littlefs.bin $OUTDIR/littlefs-$VERSION.bin