(二)搭建嵌入式开发环境(ubuntu 12.04)
1> 交叉编辑工具的安装
a. # tar -zxvf arm-linux-gcc-4.5.1-v6-vfp-20120301.tgz -C /
b. 修改配置文件/etc/profile改变环境变量PATH
在文件末端加上PATH=/opt/FriendlyARM/toolschain/4.5.1/bin/:$PATH
c. 临时让修改过的配置文件生效
# . /etc/profile
# source /etc/profile
2> PC机数据与开发板共享
a.nfs服务
1.安装nfs软件包
# apt-get install nfs-kernel-server 安装nfs服务端
# apt-get install nfs-common 安装nfs客户端
2.在服务器端创建共享目录
# mkdir /nfsroot
3.修改配置文件
# vim /etc/exports
/nfsroot *(rw,sync,no_root_squash)
4.启动nfs服务器
# /etc/init.d/nfs-kernel-server start/resart/stop/status
5.查看共享目录
# showmount -e IP
b.远程拷贝
# scp -r source_file board_ip:/
3> 安装配置minicom
# apt-get install minicom
# minicom -s
选择|Serial port setup|
修改 A-Serial Device:为/dev/ttyUSB0
修改F - Hardware Flow Control : 为No
选择| Save setup as dfl | 保存设置
选择Exit退出设置
4> 安装dnw
# tar -zxvf dnw_xxx.tar.gz
# make;make install
# modprobe secbulk