Android fastboot waiting for devices

前端 未结 7 1216
心在旅途
心在旅途 2021-01-30 03:03

I am trying to load a customized kernel on my NVIDIA test git. I typed fastboot boot myImage after which which I get:

 
<         


        
7条回答
  •  离开以前
    2021-01-30 03:46

    To use the fastboot command you first need to put your device in fastboot mode:

    $ adb reboot bootloader
    

    Once the device is in fastboot mode, you can boot it with your own kernel, for example:

    $ fastboot boot myboot.img
    

    The above will only boot your kernel once and the old kernel will be used again when you reboot the device. To replace the kernel on the device, you will need to flash it to the device:

    $ fastboot flash boot myboot.img
    

    Hope that helps.

提交回复
热议问题