标签:
第五章主要学习了搭建S3C6410开发板的测试环境。首先要了解到S3C6410是一款低功耗、高性价比的RISC处理器它是基于ARMI1内核,广泛应用于移动电话和通用处理等领域。
一.安装串口调试工具:minicom
1.检测当前系统是否支持USB转串口
lsmod | grep usbserial
2.安装minicom
apt-get install minicom
3.配置minicom
minicom –s
4.测试minicom
Minicom
二.烧写Android系统。在烧写Android之前,务必应该启动Eboot擦除NandFlash。方法如下:第一步:准备工作;第二步:进入Eboot状态;第三步:擦除NandFlash。再接着就要烧写Android:第一步:准备工作;第二步:向SD卡写入mmc.bin和zlmage-sd.bin;第三步:烧写Android前的准备工作;第四步:开始从SD卡烧写Android;第五步:校准屏幕。
三.配置有线网络
Ifconfig eth0 192.168.17.150 netmask 255.255.255.0 up
Route add default gw 192.168.17.254 dev eth0
查看当前Ip配置和路由表:
/system/busybox/sbin/ifconfig
/system/busybox/sbin/route
希望重启不在从新配置时。可以修改linuxre,将其中#好去掉,并将Ip、子网掩码、网关修改。当不想修改时,输入:sh netconfig.sh 192.168.17.166 192.168.17.254
当多个开发板连接同一个网络时:
/system/busybox/sbin/ifconfig eth0 down(关闭网卡设备)
/system/busybox/sbin/ifconfig eeth0 hw ether 08:90:00:A0:90:80(设置新的MAC地址)
/system/busybox/sbin/ifconfig eth0 up(打开网卡设备)
http://i.cnblogs.com/EditPosts.aspx?opt=1
标签:
原文地址:http://www.cnblogs.com/zhangyuye/p/5560986.html