目的:调试arm应用程序。

方案:由于没有实际开发板,所以采用qemu模拟arm系统。NFS方式便于调试。

参考文章:How To: Running Fedora-ARM under QEMU

 

步骤:

1、准备一个内核镜像,http://ftp.linux.org.uk/pub/linux/arm/fedora/qemu/zImage-versatile-2.6.24-rc7.armv5tel

2、将busybox裁剪的rootfs,拷贝到一个目录。

3、配置nfs。

4、运行:

sudo qemu-system-arm -M versatilepb -kernel zImage-versatile -append root="/dev/nfs nfsroot=10.0.0.1:/home/maverick/rootfs rw ip=10.0.0.2:10.0.0.1:10.0.0.1:255.255.255.0" -net nic,vlan=0 -net tap,vlan=0,ifname=tap0,script=./qemu-ifup &

 

其中qemu-ifup为:

#!/bin/sh
echo "Executing /etc/qemu-ifup"
sudo ifconfig $1 10.0.0.1

 

这种方法利用了qemu默认的配置,实际上并没有建立网桥,就可以实现nfs的挂载。

-net nic:建立一个虚拟网卡。

-net tap:在linux host上产生了一个tap0的接口。

配置host的ip,即可ping通client。

 

*竟然要用sudo执行qemu-system-arm,否则报个config /dev/net/tun的错。

GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e added ecosystem file for PM2 4 年前
5def40a3 Add host customization support for the NodeJS version 4 年前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐