Fixed invalid path for firmware hash generation while using extracted firmware to autoinstall

This commit is contained in:
Mark Qvist 2023-09-15 13:49:15 +02:00
parent 9889b479d1
commit 4c6b04ff69
1 changed files with 5 additions and 1 deletions

View File

@ -2612,7 +2612,11 @@ def main():
vf.close()
else:
partition_filename = fw_filename.replace(".zip", ".bin")
partition_hash = get_partition_hash(UPD_DIR+"/"+selected_version+"/"+partition_filename)
if fw_filename == "extracted_rnode_firmware.zip":
partition_full_path = EXT_DIR+"/extracted_rnode_firmware.bin"
else:
partition_full_path = UPD_DIR+"/"+selected_version+"/"+partition_filename
partition_hash = get_partition_hash(partition_full_path)
if partition_hash != None:
rnode.set_firmware_hash(partition_hash)
rnode.indicate_firmware_update()