Grrrrrr!!
I get this:
/tmp/self_upgrade/new_opt.img not found.
I found this by Igorsk, but it is beyond me. Any help?
Quote:
Originally Posted by JeffElkins View Post
I'm trying the process of creating a new image. I've copied the /opt within the image to my drive and used mkcramfs to build my new_opt.img. However, when I attempt to flash the image (option 4, option 6) I get the message: /tmp/self_upgrade/new_opt.img not found.
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"))
|