Replies: 1 comment
-
Full log, with error message and previous successful operations: myuser:tadpole-0.4.2$ python tadpole.py Result Finished updating FC with 877 ROMs myuser:tadpole-0.4.2$ |
Beta Was this translation helpful? Give feedback.
-
Looks like 'drive' variable is not getting filled for these lines:
in 'bootloaderPatch()', resulting creation of /UpdateFirmware/Firmware.upk instead /mount/point/of/sdcard/UpdateFirmware/Firmware.upk.
Tested first with as regular user and got permissions error about trying to create /UpdateFirmware/, then run as root and got the path and file (/UpdateFirmware/Firmware.upk) created, but in root of filesystem instead of sdcard.
Looks like the 'drive' variable here (few lines up) was set to null or empty string instead of 'N/A' or path:
drive = window.combobox_drive.currentText()
if drive == "N/A":
so the rest of code proceeded further.
It's strange as it looks similar to other options that need to read or write something on sdcard and these options (other fixes, roms edits, etc.) work fine, but it failed in above code few times in a row for the same option (sdcard was not unmounted or re-inserted in meantime).
Beta Was this translation helpful? Give feedback.
All reactions