Difference between revisions of "QEMU"
From IGEP - ISEE Wiki
Manel Caro (talk | contribs) |
Manel Caro (talk | contribs) |
||
Line 52: | Line 52: | ||
-m : Memory assigned to the Virtualized board in Mega Bytes. | -m : Memory assigned to the Virtualized board in Mega Bytes. | ||
− | + | <br> | |
− | <br> | ||
− | |||
<br> | <br> | ||
Revision as of 16:49, 10 January 2012
QEMU on IGEP Boards
QEMU is a generic and open source machine emulator and virtualizer.
When used as a machine emulator, QEMU can run OSes and programs made for one machine (e.g. an ARM board) on a different machine (e.g. your own PC). By using dynamic translation, it achieves very good performance.
When used as a virtualizer, QEMU achieves near native performances by executing the guest code directly on the host CPU. QEMU supports virtualization when executing under the Xen hypervisor or using the KVM kernel module in Linux. When using KVM, QEMU can virtualize x86, server and embedded PowerPC, and S390 guests.
QEMU documentation can be found here.
Build QEMU with IGEP support
Download QEMU sources from linaro git repository:
$ git clone git://git.linaro.org/qemu/qemu-linaro.git
Download IGEP support patch for QEMU from this link and after that apply the patch as:
$ cd qemu-linaro $ patch -p1 < 0001-IGEP_QEMU_support.path
Configure the sources for build with this command:
$ ./configure --target-list=arm-softmmu --prefix=/opt/qemu-linaro
Build the sources:
$ make
Install QEMU:
$ make install
Optionally you can download from here the QEMU binaries, we suggest install it under /opt directory with the right user execution permissions.
Board Emulation
Go to your qemu install directory.
$ cd /opt/qemu-linaro/bin
We provide a QEMU ready image based on Ubuntu/Linaro Nano (Oneric 11.11) image, it can be download from here.
The image has 2 partitions (you can see the partitions using fdisk -ul command as: fdisk -ul igep-nano.img)
Device Boot Start End Blocks Id System
igep-nano.img1 * 63 106494 53232 c FAT32 LBA (Boot)
igep-nano.img2 106496 1048575 470016 83 Linux (Root filesystem)
Optionally you can mount the partitions in you host PC and modify the content as:
First Partition: $ mount -o loop,offset$[63*512] igep-nano.img /mnt/tmp
Second Partition: $ mount -o loop,offset$[106496*512] igep-nano.img /mnt/tmp
Now you're ready for execute the emulator in a console with this command:
qemu-system-arm -M igep -m 512 -clock unix -serial stdio -drive file=igep-nano.img,if=sd,cache=writeback -usb -monitor telnet:localhost:7100,server,nowait,nodelay
Parameters:
-m : Memory assigned to the Virtualized board in Mega Bytes.