fastboot 烧入kernel和system命令

先让设备进入到Uboot,输入命令:fastboot

在终端中输入命令:fastboot devices
检查是否能查到设备,正确的情况下终端出现:
C:\Documents and Settings\yyp>fastboot devices
12345   fastboot

烧入boot.img命令:
C:\Documents and Settings\yyyp>fastboot flash boot D:\IMX6Q_image\boot.img
sending 'boot' (6104 KB)...
OKAY [  5.824s]
writing 'boot'...
OKAY [  2.233s]
finished. total time: 8.087s

烧入system命令:
C:\Documents and Settings\yyp>fastboot flash system D:\IMX6Q_image\system.img
sending 'system' (204800 KB)...
OKAY [195.273s]
writing 'system'...
OKAY [ 37.733s]
finished. total time: 233.005s

烧入成功后重启设备即可:fastboot reboot

你可能感兴趣的:(Android)