If I am not mistaken,
igorsk wrote in this forum, that the Universal Flasher needs to be fixed to be able to burn ready-made images:
Quote:
Originally Posted by igorsk
Edit the target.doDigit4 function in autorun.js.
Change:
Code:
if (!this.copyFile(this.driveroot+"/new_opt.img","/tmp/new_opt.img"))
to
Code:
this.runCommand("mkdir /tmp/self_upgrade");
if (!this.copyFile(this.driveroot+"/new_opt.img","/tmp/self_upgrade/new_opt.img"))
|