Merge pull request #7458 from Jason2866/development

Gzip firmware files...
This commit is contained in:
Theo Arends 2020-01-07 15:12:01 +01:00 committed by GitHub
commit 6c060b9801
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 0 deletions

29
pio/gzip-firmware.py Normal file
View File

@ -0,0 +1,29 @@
Import('env')
import os
import shutil
import gzip
OUTPUT_DIR = "build_output{}".format(os.path.sep)
def bin_gzip(source, target, env):
variant = str(target[0]).split(os.path.sep)[1]
# create string with location and file names based on variant
bin_file = "{}firmware{}{}.bin".format(OUTPUT_DIR, os.path.sep, variant)
gzip_file = "{}firmware{}{}.bin.gz".format(OUTPUT_DIR, os.path.sep, variant)
# check if new target files exist and remove if necessary
for f in [gzip_file]:
if os.path.isfile(f):
os.remove(f)
# write gzip firmware file
fp = open(bin_file,"rb")
data = fp.read()
bindata = bytearray(data)
with gzip.open(gzip_file, "wb") as f:
f.write(bindata)
fp.close()
f.close()
env.AddPostAction("$BUILD_DIR/${PROGNAME}.bin", [bin_gzip])

View File

@ -54,6 +54,7 @@ build_flags = ${core_active.build_flags}
upload_port = COM5
extra_scripts = ${scripts_defaults.extra_scripts}
pio/gzip-firmware.py
pio/obj-dump.py
; *** Upload file to OTA server using SCP