Howdy all,
I am trying to build and install B2G onto my ZTE Open, following the instructions on
https://developer.mozilla.org/en-US/docs/Mozilla/Firefox_OS/Installing_on_a_mobile_device using Ubuntu 12.04.
However, I am getting a "No such device" error when flashing via flash.sh or manually (see below). I noticed after the "OKAY" after sending data the phone reboots. However it does not reboot into the bootloader, but rather normal mode.
After the flash fails, the phone does appear on "adb devices" but not "fastboot devices". Thus when fastboot tries to write, it can't find the device because the device did not reboot into bootloader mode.
How can I fix fastboot so that it correctly reboots into bootloader mode? Alternatively, is there a way to flash without the reboot? What steps can I take to troubleshoot this? Thanks!
Command outputs:
=========
$ ./flash.sh
< waiting for device >
erasing 'cache'...
OKAY [ 0.531s]
finished. total time: 0.531s
erasing 'userdata'...
OKAY [ 1.407s]
finished. total time: 1.407s
sending 'userdata' (49378 KB)...
OKAY [ 4.175s]
writing 'userdata'...
FAILED (status read failed (No such device))
finished. total time: 9.494s
=========
=========
$ fastboot flash system system.img
sending 'system' (111020 KB)...
OKAY [ 9.394s]
writing 'system'...
FAILED (status read failed (No such device))
finished. total time: 14.748s
=========
Daniel Roesler