Personal tools

Log in

Changes

From IGEP - ISEE Wiki

Jump to: navigation, search

QEMU

80 bytes added, 16:30, 10 January 2012
no edit summary
Download QEMU sources from linaro git repository:
<pre>$ [http://git.linaro.org/gitweb?p=qemu/qemu-linaro.git;a=summary git clone git://git.linaro.org/qemu/qemu-linaro.git]</pre>
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:
<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=<&lt;span style="color: rgb(255, 0, 0);">&gt;/opt/qemu-linaro<&lt;/span>&gt;</pre>
Build the sources:
<pre>$ make </pre>
Install QEMU:
<pre>$ make install</pre>
Optionally you can download from [http://downloads.igep.es/QEMU/qemu-linaro.tar.gz here] the QEMU binaries, we suggest install it under /opt directory with the right user execution permissions.<br>
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://downloads.igep.es/QEMU/igep.nano.img here].<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</pre>
Parameters:<br>
 
-m : Memory assigned to the Virtualized board in Mega Bytes.
<br>