转自:https://www.crifan.com/try_use_qemu_emulate_arm_board_to_load_and_run_uboot_kernel_rootfs/

【背景】

手上有一个嵌入式Linux的项目。

已经用交叉编译器arm-xscale-linux-gnueabi去编译了Uboot和kernel:

【记录】Ubuntu下用arm-xscale-linux-gnueabi交叉编译uboot

【记录】Ubuntu下用arm-xscale-linux-gnueabi交叉编译linux-2.6.19.1内核

且已经有了对应的rootfs了,所以算是基本齐全了。

后来得知有个QEMU,和SkyEye类似,可以模拟arm开发板。

所以,尝试去试试,能否在Ubuntu下,用QEMU去模拟加载并运行Uboot,kernel,rootfs。

【折腾过程】

1.再去看看关于QEMU的介绍资料:

QEMU (简体中文)

QEMU Main Page

2.其下载页面:

http://wiki.qemu.org/Download

下载QEMU:

http://wiki.qemu-project.org/download/qemu-1.6.0-rc3.tar.bz2

解压得到源码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
crifan@ubuntu:qemu-1.6.0-rc3$ tar xvfj qemu-1.6.0-rc3.tar.bz2
 
crifan@ubuntu:qemu-1.6.0-rc3$ ls
aio-posix.c              cputlb.c          linux-headers     qdict-test-data.txt     qmp-commands.hx    target-sparc
aio-win32.c              default-configs   linux-user        qemu-bridge-helper.c    qobject            target-unicore32
arch_init.c              device-hotplug.c  main-loop.c       qemu-char.c             qom                target-xtensa
async.c                  device_tree.c     MAINTAINERS       qemu-coroutine.c        qtest.c            tcg
audio                    disas             Makefile          qemu-coroutine-io.c     readline.c         tcg-runtime.c
backends                 disas.c           Makefile.objs     qemu-coroutine-lock.c   README             tci.c
balloon.c                dma-helpers.c     Makefile.target   qemu-coroutine-sleep.c  roms               tests
block                    docs              memory.c          qemu-doc.texi           rules.mak          thread-pool.c
block.c                  dtc               memory_mapping.c  qemu-img.c              savevm.c           thunk.c
blockdev.c               dump.c            migration.c       qemu-img-cmds.hx        scripts            tpm.c
blockdev-nbd.c           exec.c            migration-exec.c  qemu-img.texi           slirp              trace
blockjob.c               fpu               migration-fd.c    qemu-io.c               spice-qemu-char.c  trace-events
block-migration.c        fsdev             migration-rdma.c  qemu-io-cmds.c          stubs              translate-all.c
bsd-user                 gdbstub.c         migration-tcp.c   qemu-log.c              sysconfigs         translate-all.h
bt-host.c                gdb-xml           migration-unix.c  qemu-nbd.c              target-alpha       ui
bt-vhci.c                HACKING           monitor.c         qemu-nbd.texi           target-arm         user-exec.c
Changelog                hmp.c             nbd.c             qemu.nsi                target-cris        util
CODING_STYLE             hmp-commands.hx   net               qemu-options.h          target-i386        VERSION
configure                hmp.h             os-posix.c        qemu-options.hx         target-lm32        version.rc
COPYING                  hw                os-win32.c        qemu-options-wrapper.h  target-m68k        vl.c
COPYING.LIB              include           page_cache.c      qemu.sasl               target-microblaze  xbzrle.c
coroutine-gthread.c      iohandler.c       pc-bios           qemu-seccomp.c          target-mips        xen-all.c
coroutine-sigaltstack.c  ioport.c          pixman            qemu-tech.texi          target-moxie       xen-mapcache.c
coroutine-ucontext.c     kvm-all.c         po                qemu-timer.c            target-openrisc    xen-stub.c
coroutine-win32.c        kvm-stub.c        qapi              qga                     target-ppc
cpu-exec.c               libcacard         qapi-schema.json  QMP                     target-s390x
cpus.c                   LICENSE           qdev-monitor.c    qmp.c                   target-sh4
crifan@ubuntu:qemu-1.6.0-rc3$ pwd
/home/crifan/develop/embedded/qemu/qemu-1.6.0-rc3

3.参考官网的文档:

http://wiki.qemu.org/Manual

中的:

Virtual Development Board

Debian on an emulated ARM machine

QEMU Emulator User Documentation

去折腾。

4.先去在Ubuntu的Host上为arm平台安装QEMU:

【记录】在Ubuntu 13.04上为arm平台安装QEMU

5.然后再去下载测试软件:

http://wiki.qemu.org/download/arm-test-0.2.tar.gz

然后解压:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
crifan@ubuntu:qemu-1.6.0-rc3$ pwd
/home/crifan/develop/embedded/qemu/qemu-1.6.0-rc3
crifan@ubuntu:qemu-1.6.0-rc3$ cd ..
crifan@ubuntu:qemu$ ls
qemu-1.6.0-rc3  qemu-1.6.0-rc3.tar.bz2
crifan@ubuntu:qemu$ mkdir test
crifan@ubuntu:qemu$ cd test
crifan@ubuntu:test$ mkdir arm
crifan@ubuntu:test$ cd arm
crifan@ubuntu:arm$ wget http://wiki.qemu.org/download/arm-test-0.2.tar.gz
--2013-08-15 03:02:29--  http://wiki.qemu.org/download/arm-test-0.2.tar.gz
Resolving wiki.qemu.org (wiki.qemu.org)... 140.211.15.109
Connecting to wiki.qemu.org (wiki.qemu.org)|140.211.15.109|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 3310162 (3.2M) [application/x-gzip]
Saving to: ‘arm-test-0.2.tar.gz’
 
100%[=======================================================================================================>] 3,310,162    978KB/s   in 3.4s  
 
2013-08-15 03:02:35 (938 KB/s) - ‘arm-test-0.2.tar.gz’ saved [3310162/3310162]
 
crifan@ubuntu:arm$ ls
arm-test-0.2.tar.gz
crifan@ubuntu:arm$ tar xf arm-test-0.2.tar.gz
crifan@ubuntu:arm$ ls
arm-test  arm-test-0.2.tar.gz
crifan@ubuntu:arm$ cd arm-test/
crifan@ubuntu:arm-test$ ls
arm_root.img  README  zImage.integrator
crifan@ubuntu:arm-test$ pwd
/home/crifan/develop/embedded/qemu/test/arm/arm-test
crifan@ubuntu:arm-test$

6.再去测试,结果只输出一行VNC:

【已解决】QUEMU安装完毕后测试arm出错:只有一行VNC server running on `127.0.0.1:5900′没其他输出

解决后,可以看到QEMU的arm的linux界面了:

7.再去测试测试arm的hello world是否可用。

先写个hello_qemu.c:

1
2
3
4
5
6
7
#include <stdio.h>
 
int main(void)
{
    printf("Hello QEMU for ARM !\n");
    return 0;
}

再去用自己的交叉编译器arm-xscale-linux-gnueabi去编译:

1
2
3
4
crifan@ubuntu:helloworld$ arm-xscale-linux-gnueabi-gcc -o hello_qemu hello_qemu.c
crifan@ubuntu:helloworld$ file hello_qemu
hello_qemu: ELF 32-bit LSB executable, ARM, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.19, not stripped
crifan@ubuntu:helloworld$

然后去运行试试:

先去找到sysroot的路径,是参考之前的折腾:

【已解决】Eclipse通过Makefile调用交叉编译器交叉编译C项目出错:Type ‘FILE’ could not be resolved

的路径:

/opt/crosscompile/xscale/gcc-4.6.0-glibc-2.9/arm-xscale-linux-gnueabi/sysroot/usr/include

所以sysroot,应该是:

/opt/crosscompile/xscale/gcc-4.6.0-glibc-2.9/arm-xscale-linux-gnueabi/sysroot

所以去试试:

1
2
3
crifan@ubuntu:helloworld$ qemu-arm -L /opt/crosscompile/xscale/gcc-4.6.0-glibc-2.9/arm-xscale-linux-gnueabi/sysroot hello_qemu
Hello QEMU for ARM !
crifan@ubuntu:helloworld$

说明交叉工具链是正常的。

8.再去折腾uboot:

【记录】Ubuntu下测试QEMU中加载和测试Uboot

9.然后再去下载编译kernel:

【记录】Ubuntu下测试QEMU中加载和测试Linux内核

10.然后再去弄Open TFTP Server:

【记录】Ubuntu下为QEMU安装Open TFTP Server

11.然后再去折腾qemu-ifup & qemu-ifdown:

【记录】Ubuntu下为QEMU准备qemu-ifup和qemu-ifdown

12.都准备好了,就可以去启动内核了:

【记录】Ubuntu下使用QEMU启动Linux内核

13.折腾完毕内核,就可以去弄rootfs了:

【记录】Ubuntu下为QEMU建立一个arm平台的可用的根文件系统rootfs

【总结】

此处,已经可以正常运行,一个基于busybox的,从ram启动的rootfs了。

至此,算是基本可用了。

有空再折腾,如何从uboot启动内核,从nfs加载rootfs等等内容。

转载请注明:在路上 » 【记录】尝试用QEMU模拟ARM开发板去加载并运行Uboot,kernel,rootfs

【记录】尝试用QEMU模拟ARM开发板去加载并运行Uboot,kernel,rootfs【转】的更多相关文章

  1. 列出当前ARM开发板系统加载的模块

    lsmod 列出当前系统中加载的模块,其中左边第一列是模块名,第二列是该模块大小,第三列则是使用该模块的对象数目

  2. qemu 模拟-arm-mini2440开发板-启动u-boot,kernel和nfs文件系统

    qemu 本文介绍了如何编译u-boot.linux kernel,然后用qemu启动u-boot和linux kernel,达到与开发板上一样的学习效果! 虽然已经买了2440开发板,但是在实际学习 ...

  3. qemu 模拟-arm-mini2440开发板-启动u-boot,kernel和nfs文件系统【转】

    转自:http://www.cnblogs.com/riskyer/p/3366001.html qemu 本文介绍了如何编译u-boot.linux kernel,然后用qemu启动u-boot和l ...

  4. IMX6开发板虚拟机加载Ubuntu12.04.2镜像

    基于迅为IMX6开发板安装好虚拟机之后,用户就可以加载 Ubuntu12.04.2 镜像.用户可以在网盘中下载“编译好的镜像”,该镜像已经安装好了编译 Android4.4.2 所需要的大部分软件.用 ...

  5. 【记录】恢复win7与ARM开发板TQ2440的串口连接

    1.给板子上电. 2.接好物理上的串口连接,板子那端就是普通的RS232串口,电脑这端是USB转串口的线的USB这头,连到电脑上,然后在Win7系统下,先去看看,当前连接的USB虚拟出来的串口是哪个口 ...

  6. ubuntu下使用qemu模拟ARM(六)------驱动程序【转】

    转自:http://blog.csdn.net/rfidunion/article/details/54709843 驱动程序分为在ubuntu上运行和在ARM开发板上运行两种,我们分别来进行测试 1 ...

  7. ubuntu(物理机)连接ARM开发板

    非虚拟机 ubuntu下连接开发板 首先安装超级终端minicom sudo apt-get install minicom 安装完minicom以后,需要将开发板和电脑进行物理连接.需要使用一条网线 ...

  8. CentOS 7 利用qemu模拟ARM vexpress A9开发板

    听说qemu用于仿真arm很不错,今日就来试了一把.由于刚刚开始,了解的并不多.本文仅仅记录Qemu装载Linux kernel和busybox根文件系统的过程.后续将会深入了解仿真的其他内容. 先上 ...

  9. 一步步教你如何在ubuntu虚拟机中安装QEMU并模拟arm 开发环境(二)rootfs制作

    过了,一天,周又到了,博主终于可以拿出时间来把上一次没有给大家展示完了的内容今天在这里一并展示给大家,希望和大家共同进步,共同学习,同时我也虔诚的希望各位业界的朋友把自己的工作经验拿出来大家一起分享, ...

随机推荐

  1. java 实用类

                                                java  实用类 1.File类为管理文件和目录提供了方法,其对象表示一个文件或者目录.它提供了若干方法对文件 ...

  2. spring接收json字符串的两种方式

    一.前言 前几天遇到一个问题,前端H5调用我的springboot一个接口(post方式,@RequestParameter接收参数),传入的参数接收不到.自己测试接口时使用postman的form- ...

  3. 页面: Fork me on GitHub

    一.实现效果如下: 二.代码地址:https://github.com/blog/273-github-ribbons 这是一个国外网友开发的代码, 里面有很多种样式,可以自已随心选择. 三.我们只拿 ...

  4. IBatisNet 缓存使用

    参考:http://www.cnblogs.com/xiaogangqq123/archive/2011/06/30/2094905.html <?xml version="1.0&q ...

  5. [洛谷P4723]【模板】线性递推

    题目大意:求一个满足$k$阶齐次线性递推数列$a_i$的第$n$项. 即:$a_n=\sum\limits_{i=1}^{k}f_i \times a_{n-i}$ 题解:线性齐次递推,先见洛谷题解, ...

  6. 数字表格(product)

    Description Solution 一开始的时候我是这么推的(\(f(n)\)表示斐波那契数列的第\(n\)项) \[ \begin{aligned} Ans&=\prod_{x=1}^ ...

  7. NOIWC前的交流题目汇总

    RT 2018.12.27 i207M:BZOJ 4695 最假女选手 以维护最大值为例,记录最大值和严格次大值和最大值的出现次数,然后取min的时候递归到小于最大值但大于次大值修改,这个就是最重要的 ...

  8. 【bzoj2754】【scoi2012】喵星球上的点名

    题解们: 1.首先可以被很多暴力给搞过去:我以前也是这样水过去的 2.ac自动机 2.1 抽离fail树 对点名建自动机,建$fail$树的时候只保留询问节点: 对于一个喵,子串==在自动机里匹配到的 ...

  9. [NOI2011]阿狸的打字机——AC自动机之fail树的利用

    Description 阿狸喜欢收藏各种稀奇古怪的东西,最近他淘到一台老式的打字机.打字机上只有28个按键,分别印有26个小写英文字母和'B'.'P'两个字母. 经阿狸研究发现,这个打字机是这样工作的 ...

  10. opencv 启动摄像头 C++

    http://blog.csdn.net/thefutureisour/article/details/7530177 在网上看了许多关于OpenCV启动摄像头的资料,但是,都是基于C语言的,代码又臭 ...