Meego Wiki
Views

SDK/Tutorials/Image Creation

From MeeGo wiki
(Difference between revisions)
Jump to: navigation, search
(Create QEMU images (QEMU NAND and rootfs))
(Create QEMU images (QEMU NAND and rootfs))
Line 13: Line 13:
Create the QEMU NAND image using qflasher tool:
Create the QEMU NAND image using qflasher tool:
-
* 3 components are needed: a kernel file, nolo-qemu package (xloader/secondary binaries) and qflasher package.
+
* 3 components are needed: a kernel file, nolo-qemu package (provides xloader/secondary binaries) and qflasher package.
** the kernel file is available with the MeeGo images for QEMU (e.g. http://download.meego.com/trunk-daily/builds/1.1.80/trunk-daily-1.1.80.12.20101223.1/handset/images/meego-handset-armv7l-qemu/)
** the kernel file is available with the MeeGo images for QEMU (e.g. http://download.meego.com/trunk-daily/builds/1.1.80/trunk-daily-1.1.80.12.20101223.1/handset/images/meego-handset-armv7l-qemu/)
** nolo-qemu and qflasher packages are available from non-oss repository (e.g. http://repo.meego.com/MeeGo/builds/trunk/daily/non-oss/repos/ia32/packages/i586/)
** nolo-qemu and qflasher packages are available from non-oss repository (e.g. http://repo.meego.com/MeeGo/builds/trunk/daily/non-oss/repos/ia32/packages/i586/)

Revision as of 14:26, 24 December 2010

Overview

Create sysroot image(s)

Create the sysroot image(s) using mic2 tool:

sudo mic-image-creator --run-mode=0 --cache=mycachedir --format=fs --arch=${arch} --config=core-${arch}-madde-sysroot.ks --package=tar.bz2 --release

Create QEMU images (QEMU NAND and rootfs)

Create the QEMU NAND image using qflasher tool:

$ ./qflasher -m rx51 -x xloader-qemu.bin -s secondary-qemu.bin -k meego-handset-armv7l-qemu-daily-vmlinuz-2.6.35.3-10.3-n900 -o meego-handset-armv7l-qemu-daily-nand-n900.img
  • use the following command line to run QEMU:
$ touch sd-empty
$ /opt/meego/qemu-arm/bin/qemu-system-arm -M n900 -mtdblock meego-handset-armv7l-qemu-daily-nand-n900.img -sd sd-empty -sd meego-handset-armv7l-qemu-daily-mmcblk0p.raw -serial stdio -clock unix -redir tcp:5555:10.0.2.15:22

Note: qflasher can be used on all supported Linux hosts. You can extract the rpm package using

$ rpm2cpio qflasher-21-1.1.i586.rpm | cpio -idmv 

Create the QEMU rootfs image using mic2 tool:

sudo mic-image-creator --run-mode=0 --cache=mycachedir --format=raw --arch=${arch} --save-kernel --config=handset-${arch}-qemu.ks --package=tar.bz2 --release
Personal tools