今天用fastboot烧写了一下安卓系统(otg口烧写方式)
步骤:
1)首先需要格式化内存
开发板进入fastboot模式
#fdisk -c 0
#fatformat mmc 0:1
#fatformat mmc 0:2
#fatformat mmc 0:3
#fatformat mmc 0:4
2)在fastboot终端下烧写 zImage, ramdisk-uboot ,system.img
进入到 USB_fastboot_tool的platform-tools文件夹下将前面提到的三个文件复制进去
fastboot.exe flash kernel zImage
fastboot.exe flash ramdisk ramdiak-uboot.img
fastboot.exe flash system system.img
fastboot -w
fastboot reboot
基本就已经完成了,minilinux和安卓的烧写方式一样 Ubuntu的烧写方式会难一些。