mirror of https://github.com/arendst/Tasmota.git
24 lines
790 B
Python
24 lines
790 B
Python
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)[2]
|
|
|
|
# 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
|
|
if os.path.isfile(gzip_file): os.remove(gzip_file)
|
|
|
|
# write gzip firmware file
|
|
with open(bin_file,"rb") as fp:
|
|
with gzip.open(gzip_file, "wb", compresslevel = 9) as f:
|
|
shutil.copyfileobj(fp, f)
|
|
|
|
env.AddPostAction("$BUILD_DIR/${PROGNAME}.bin", [bin_gzip])
|