Firmware2/buildroot/share/PlatformIO/scripts/lerdge.py

49 lines
1.4 KiB
Python
Raw Normal View History

2021-02-28 05:38:57 +01:00
#
# buildroot/share/PlatformIO/scripts/lerdge.py
# Customizations for Lerdge build environments:
# env:LERDGEX env:LERDGEX_usb_flash_drive
# env:LERDGES env:LERDGES_usb_flash_drive
# env:LERDGEK env:LERDGEK_usb_flash_drive
2021-02-28 05:38:57 +01:00
#
import os,marlin
2020-07-07 00:08:52 +02:00
Import("env")
from SCons.Script import DefaultEnvironment
board = DefaultEnvironment().BoardConfig()
def encryptByte(byte):
byte = 0xFF & ((byte << 6) | (byte >> 2))
i = 0x58 + byte
j = 0x05 + byte + (i >> 8)
byte = (0xF8 & i) | (0x07 & j)
return byte
def encrypt_file(input, output_file, file_length):
input_file = bytearray(input.read())
for i in range(len(input_file)):
result = encryptByte(input_file[i])
input_file[i] = result
output_file.write(input_file)
return
# Encrypt ${PROGNAME}.bin and save it with the name given in build.encrypt
2020-07-07 00:08:52 +02:00
def encrypt(source, target, env):
fwname = board.get("build.encrypt")
print("Encrypting %s to %s" % (target[0].path, fwname))
2020-07-07 00:08:52 +02:00
firmware = open(target[0].path, "rb")
renamed = open(target[0].dir.path + "/" + fwname, "wb")
2020-07-07 00:08:52 +02:00
length = os.path.getsize(target[0].path)
encrypt_file(firmware, renamed, length)
2020-07-07 00:08:52 +02:00
firmware.close()
renamed.close()
2020-07-07 00:08:52 +02:00
if 'encrypt' in board.get("build").keys():
if board.get("build.encrypt") != "":
marlin.add_post_action(encrypt)
2020-07-07 00:08:52 +02:00
else:
print("LERDGE builds require output file via board_build.encrypt = 'filename' parameter")
exit(1)