I have device that connected to my PC over wifi/ethernet.
After adb reboot bootloader
device moves to the fastboot mode.
How can I connect it back with fastboot
/ or how can I flash image on it.
I even can't ping
my device.
I have device that connected to my PC over wifi/ethernet.
After adb reboot bootloader
device moves to the fastboot mode.
How can I connect it back with fastboot
/ or how can I flash image on it.
I even can't ping
my device.
Fastboot devices
Should show you your device connected to your PC when its in fastboot mode. If your device isn't shown up then you might lack the adb driver for your device. fastboot -t
should be invalid, cause you can "only" use -w/u/s/l/p/c/i/b/n
as a parameter for the fastboot cmd
.
But whats even more important: fastboot
should only work on USB connected devices, however you managed it to connect it via ethernet/wifi.
You have to check your bootloader and make sure that your fastboot is correctly configred.
It must be able to bring up the wifi/ethernet interface and perform a DHCP or set a static ip address before you can connect to it.
If you are sure that the device could get an IP address in fastboot mode, plese try to get connected to it firstly by ping its ip address. If you got no react, try to use wireshark to capture some trace to see if there is something wrong (firewall issue?).