I am trying to flash a recovery-image file into my Nexus 7 but the flashing fails
know that I am working on windows and my image file is located in the same folder as adb and fastboot files are
here are the steps I am following:
- start the tablet android system, and the device works fine
- I restart the tablet into the bootloader using:
adb reboot bootloader - browse to the Recovery Mode and then check if the adb sees the tablet:
fastboot devices - adb is working fine and can detect the device and read its serial number
then when I flash:
fastboot flash recovery recovery-clockwork.img: I get this error:error: cannot load 'recovery-clockwork': No error
what am I doing wrong ?
Answer
Most common errors (and solutions to them) are:
- different file name: make sure the file is really named
recovery-clockwork.img, in your example, or adjust your command according to the file name - wrong path, e.g. your file resides in
C:\Downloads, but you're executingfastboot flash recovery recovery-clockwork.imgfromC:\: Either first change to the directory the.imgfile is located in, move the.imgto where you want to execute your command, or try specifying the file with its full path (e.g.C:\Downloads\recovery-clockwork.img) - sometimes
adb/fastbootbehaves strangely when executed from "somewhere else". In those cases it helps to first changing to the directory where the resp. executable is located, and run your command from there.
No comments:
Post a Comment