mirror of
https://github.com/arendst/Tasmota.git
synced 2025-07-28 13:16:32 +00:00
Merge pull request #6902 from Jason2866/patch-1
Rename firmware.bin to selected env
This commit is contained in:
commit
1d4822e6a6
9
pio/rename-firmware.py
Normal file
9
pio/rename-firmware.py
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
Import('env')
|
||||||
|
import os
|
||||||
|
|
||||||
|
def obj_ren_after_bin(source, target, env):
|
||||||
|
# print("Rename firmware.bin")
|
||||||
|
base_dir = os.path.dirname(str(target[0]))
|
||||||
|
os.rename(str(target[0]), "{}{}{}.bin".format(base_dir, os.path.sep, str(target[0]).split(os.path.sep)[1]))
|
||||||
|
|
||||||
|
env.AddPostAction("$BUILD_DIR/${PROGNAME}.bin", [obj_ren_after_bin])
|
@ -86,6 +86,7 @@ upload_resetmethod = nodemcu
|
|||||||
; *** Upload Serial reset method for Wemos and NodeMCU
|
; *** Upload Serial reset method for Wemos and NodeMCU
|
||||||
upload_port = COM5
|
upload_port = COM5
|
||||||
extra_scripts = pio/strip-floats.py
|
extra_scripts = pio/strip-floats.py
|
||||||
|
pio/rename-firmware.py
|
||||||
pio/obj-dump.py
|
pio/obj-dump.py
|
||||||
|
|
||||||
; *** Upload file to OTA server using SCP
|
; *** Upload file to OTA server using SCP
|
||||||
|
Loading…
x
Reference in New Issue
Block a user