Android系统的烧写
连接串口到板子的调试串口
启动板子进入uboot
1, 将启动模式设为USB启动
2, 连接usb 电源 串口 线, 长按电源按钮(不放).
3, 打开minicom串口终端, 在shell终端下执行一下命令: (dnw 是linux下的, 在github上有源代码) dnw -a 0xd0020010 ./x210_usb.bin dnw -a 0x23e00000 ./u-boot.bin 松开电源按钮, 可以在串口终端看到uboot启动了
4, 在uboot命令行依次执行以下命令:
x210 # fdisk -c 0 x210 # fatformat mmc 0:1
x210 # resetenv x210 # saveenv
x210 # fastboot
/*
( shell终端下执行以下命令: (fastboo在android SDK 下有)fastboot flash bootloader ./u-boot.bin
fastboot flash kernel ./zImage
fastboot flash ramdisk ./ramdisk.img fastboot flash system ./system.img fastboot -w
) */
5, x210 # setenv bootargs 'console=ttySAC0,115200 lcd=8inch' # 如果是8寸屏模拟摄像头则执行此步操作
对于arm linux system
setenv bootargs 'console=ttySAC0,115200 noinitrd root=/dev/mmcblk0p2 rw rootfstype=ext2 init=/linuxrc'
setenv bootcmd 'movi read kernel 30008000; bootm 30008000'