Difference between revisions of "QEMU"

From IGEP - ISEE Wiki

Jump to: navigation, search
(Board Emulation)
 
(29 intermediate revisions by 2 users not shown)
Line 7: Line 7:
 
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.  
 
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 [http://wiki.qemu.org/Manual here].<br>
  
 
== Build QEMU with IGEP support  ==
 
== Build QEMU with IGEP support  ==
Line 15: Line 15:
 
$ [http://git.linaro.org/gitweb?p=qemu/qemu-linaro.git;a=summary git clone git://git.linaro.org/qemu/qemu-linaro.git]  
 
$ [http://git.linaro.org/gitweb?p=qemu/qemu-linaro.git;a=summary git clone git://git.linaro.org/qemu/qemu-linaro.git]  
  
Download IGEP support patch for QEMU from this [http://downloads.igep.es/QEMU/0001-IGEP_QEMU_support.path link ]and after that apply the patch as:  
+
Download IGEP support patch for QEMU from this [http://www.isee.biz/component/zoo/item/qemu-emulator link]and after that apply the patch as:  
 +
<pre>$ cd qemu-linaro
 +
 
 +
$ patch -p1 &lt; 0001-IGEP_QEMU_support.path</pre>
 +
Configure the sources for build with this command:
 +
<pre>$ ./configure --target-list=arm-softmmu --prefix=/opt/qemu-linaro</pre>
 +
Build the sources:
 +
<pre>$ make </pre>
 +
Install QEMU:
 +
<pre>$ make install</pre>
 +
Optionally you can download from [http://www.isee.biz/component/zoo/item/qemu-emulator here] the QEMU binaries, we suggest install it under /opt directory with the right user execution permissions.<br>
 +
 
 +
== Board Emulation  ==
 +
 
 +
Go to your qemu install directory.<br>
 +
<pre>$ cd /opt/qemu-linaro/bin
 +
</pre>
 +
We provide a QEMU ready image based on Ubuntu/Linaro Nano (Oneric 11.11) image, it can be download from [http://www.isee.biz/component/zoo/item/qemu-emulator here] (first uncompress it).<br>
 +
 
 +
The image has 2 partitions (you can see the partitions using fdisk -ul command as: fdisk -ul igep-nano.img)<br>
 +
 
 +
Device&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Boot&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Start&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Blocks&nbsp;&nbsp; Id&nbsp; System<br>
  
$ cd qemu-linaro
+
igep-nano.img1&nbsp;&nbsp; *&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; 63&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 106494&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 53232&nbsp;&nbsp;&nbsp; c&nbsp; FAT32 LBA (Boot)<br>
  
$ patch -p1 &lt;&nbsp;0001-IGEP_QEMU_support.path
+
igep-nano.img2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 106496&nbsp;&nbsp;&nbsp;&nbsp; 1048575&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 470016&nbsp;&nbsp; 83&nbsp; Linux (Root filesystem)<br>
  
Configure the sources for build with this command:  
+
Optionally you can mount the partitions in you host PC and modify the content as:<br>
 +
<pre>First Partition:
 +
$ mount -o loop,offset=$[63*512] igep-nano.img /mnt/tmp
 +
</pre><pre>Second Partition:
 +
$ mount -o loop,offset=$[106496*512] igep-nano.img /mnt/tmp</pre>
 +
Now you're ready for execute the emulator in a console with this command:<br>
 +
<pre>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 -device usb-kbd -device usb-mouse</pre>
 +
Parameters:<br>
 +
 
 +
-m&nbsp;: Memory assigned to the Virtualized board in Mega Bytes.
 +
 
 +
[[Image:QEMU boot.png|thumb|center]]
 +
 
 +
== Tips  ==
 +
 
 +
=== Resize Rootfs Partition  ===
 +
 
 +
We will resize our rootfs partition adding 1 GB at end.
 +
 
 +
First we create a new raw file using qemu-img as:
 +
<pre>$ qemu-img create -f raw addon.raw 1G </pre>
 +
With addon.raw we concatenate it at end of our image file as:
 +
<pre>$ cat addon.raw &gt;&gt; igep-nano.img </pre>
 +
Next step it's modify the partition table information. We will use cfdisk utility for modify the information.
 +
<pre>$ sudo cfdisk igep-nano.img  </pre>
 +
Next step it's select your rootfs partition as this picture shows
 +
 
 +
[[Image:Cfdisk change size partition.png|thumb|center]]Select the menu '''RESIZE''' and select '''CHANGE&nbsp;SIZE'''&nbsp;option.
 +
 
 +
[[Image:Cfdisk change size partition option.png|thumb|center]]Select resize at '''END'''.
 +
 
 +
[[Image:Cfdisk resize end.png|thumb|center]]Enter the MAX new size and press enter key.
  
$&nbsp;./configure --target-list=arm-softmmu --prefix=<span style="color: rgb(255, 0, 0);">/opt/qemu-linaro</span>
+
We will write the changes to the disk using the '''commit''' menu option and select '''YES''' (confirm the changes).
  
Build the sources:
+
The next step it's update the file-system structure.
 +
<pre>$ sudo losetup /dev/loop0 igep-nano.img -o $[106496*512]
  
$ make
+
$ sudo e2fsck -f /dev/loop0
  
Install QEMU:  
+
e2fsck 1.41.14 (22-Dec-2010)
 +
rootfs: recovering journal
 +
Pass 1: Checking inodes, blocks, and sizes
 +
Pass 2: Checking directory structure
 +
Pass 3: Checking directory connectivity
 +
Pass 4: Checking reference counts
 +
Pass 5: Checking group summary information
  
$ make install
+
rootfs: ***** FILE SYSTEM WAS MODIFIED *****
 +
rootfs: 11969/5579872 files (0.6% non-contiguous), 1126338/22491136 blocks
  
Optionally you can download from [http://downloads.igep.es/QEMU/qemu-linaro.tar.gz here] the QEMU binaries.<br>
+
$ sudo resize2fs /dev/loop0
  
== Board Emulation  ==
+
$ sudo losetup -d /dev/loop0
 +
</pre>
 +
Now you should see your new partition with your wished new size.
  
./qemu-system-arm -M igep -m 512 -clock unix -serial stdio -drive file=/home/mcaro/Projects/myigep/workspace/igep-dsp-gst-framework/igep-ubuntu-desktop.img,if=sd,cache=writeback -usb -usbdevice host:usb.1:80ee:cafe -monitor telnet:localhost:7100,server,nowait,nodelay
+
[[Category:Development_tools|QEMU]]

Latest revision as of 10:06, 31 August 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 linkand 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 (first uncompress it).

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 -device usb-kbd -device usb-mouse

Parameters:

-m : Memory assigned to the Virtualized board in Mega Bytes.

QEMU boot.png

Tips

Resize Rootfs Partition

We will resize our rootfs partition adding 1 GB at end.

First we create a new raw file using qemu-img as:

$ qemu-img create -f raw addon.raw 1G 

With addon.raw we concatenate it at end of our image file as:

$ cat addon.raw >> igep-nano.img 

Next step it's modify the partition table information. We will use cfdisk utility for modify the information.

$ sudo cfdisk igep-nano.img  

Next step it's select your rootfs partition as this picture shows

Cfdisk change size partition.png
Select the menu RESIZE and select CHANGE SIZE option.
Cfdisk change size partition option.png
Select resize at END.
Cfdisk resize end.png
Enter the MAX new size and press enter key.

We will write the changes to the disk using the commit menu option and select YES (confirm the changes).

The next step it's update the file-system structure.

$ sudo losetup /dev/loop0 igep-nano.img -o $[106496*512]

$ sudo e2fsck -f /dev/loop0

e2fsck 1.41.14 (22-Dec-2010)
rootfs: recovering journal
Pass 1: Checking inodes, blocks, and sizes
Pass 2: Checking directory structure
Pass 3: Checking directory connectivity
Pass 4: Checking reference counts
Pass 5: Checking group summary information

rootfs: ***** FILE SYSTEM WAS MODIFIED *****
rootfs: 11969/5579872 files (0.6% non-contiguous), 1126338/22491136 blocks

$ sudo resize2fs /dev/loop0

$ sudo losetup -d /dev/loop0 

Now you should see your new partition with your wished new size.