summaryrefslogtreecommitdiffstats
path: root/meta/classes/qemuboot.bbclass
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2016-08-25 07:40:58 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-09-09 12:07:31 +0100
commit605d8b1ef0010efe845bf7f479fef18896c085e6 (patch)
treeb0eac63394ae36feafd34de639561da123ad9e12 /meta/classes/qemuboot.bbclass
parent2984863f42e5a137cf9b5d557202d9d44c858369 (diff)
downloadpoky-605d8b1ef0010efe845bf7f479fef18896c085e6.tar.gz
qemuboot.bbclass: add it for runqemu
It saves vars in ${DEPLOY_DIR_IMAGE}/<image>.qemuboot.conf, and runqemu will read it. The bsp which can be boot by runqemu will inherit it. (From OE-Core rev: 1675e9b89e00b875d0da13411a2a939aa4ba5298) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/qemuboot.bbclass')
-rw-r--r--meta/classes/qemuboot.bbclass75
1 files changed, 75 insertions, 0 deletions
diff --git a/meta/classes/qemuboot.bbclass b/meta/classes/qemuboot.bbclass
new file mode 100644
index 0000000000..8500c7343a
--- /dev/null
+++ b/meta/classes/qemuboot.bbclass
@@ -0,0 +1,75 @@
1# Help runqemu boot target board, "QB" means Qemu Boot, the following
2# vars can be set in conf files, such as <bsp.conf> to make it can be
3# boot by runqemu:
4#
5# QB_SYSTEM_NAME: qemu name, e.g., "qemu-system-i386"
6# QB_OPT_APPEND: options to append to qemu, e.g., "-show-cursor"
7# QB_DEFAULT_KERNEL: default kernel to boot, e.g., "bzImage"
8# QB_DEFAULT_FSTYPE: default FSTYPE to boot, e.g., "ext4"
9# QB_MEM: memory, e.g., "-m 512"
10# QB_MACHINE: qemu machine, e.g., "-machine virt"
11# QB_CPU: qemu cpu, e.g., "-cpu qemu32"
12# QB_CPU_KVM: the similar to QB_CPU, but used when kvm, e.g., '-cpu kvm64',
13# set it when support kvm.
14# QB_KERNEL_CMDLINE_APPEND: options to append to kernel's -append
15# option, e.g., "console=ttyS0 console=tty"
16# QB_DTB: qemu dtb name
17# QB_AUDIO_DRV: qemu audio driver, e.g., "alsa", set it when support audio
18# QB_AUDIO_OPT: qemu audio option, e.g., "-soundhw ac97,es1370", used
19# when QB_AUDIO_DRV is set.
20# QB_KERNEL_ROOT: kernel's root, e.g., /dev/vda
21# QB_TAP_OPT: netowrk option for 'tap' mode, e.g.,
22# "-netdev tap,id=net0,ifname=@TAP@,script=no,downscript=no -device virtio-net-device,netdev=net0"
23# Note, runqemu will replace "@TAP@" with the one which is used, such as tap0, tap1 ...
24# QB_SLIRP_OPT: network option for SLIRP mode, e.g.,
25# "-netdev user,id=net0 -device virtio-net-device,netdev=net0"
26# QB_ROOTFS_OPT: used as rootfs, e.g.,
27# "-drive id=disk0,file=@ROOTFS@,if=none,format=raw -device virtio-blk-device,drive=disk0"
28# Note, runqemu will replace "@ROOTFS@" with the one which is used, such as core-image-minimal-qemuarm64.ext4.
29# QB_SERIAL_OPT: serial port, e.g., "-serial mon:stdio"
30# QB_TCPSERIAL_OPT: tcp serial port option, e.g.,
31# " -device virtio-serial-device -chardev socket,id=virtcon,port=@PORT@,host=127.0.0.1 -device virtconsole,chardev=virtcon"
32# Note, runqemu will replace "@PORT@" with the port number which is used.
33#
34# Usage:
35# IMAGE_CLASSES += "qemuboot"
36# See "runqemu help" for more info
37
38QB_MEM ?= "-m 256"
39QB_SERIAL_OPT ?= "-serial mon:stdio -serial null"
40QB_DEFAULT_KERNEL ?= "${KERNEL_IMAGETYPE}"
41QB_DEFAULT_FSTYPE ?= "ext4"
42QB_OPT_APPEND ?= "-show-cursor"
43
44# Create qemuboot.conf
45ROOTFS_POSTPROCESS_COMMAND += "write_qemuboot_conf; "
46
47python write_qemuboot_conf() {
48 import configparser
49
50 build_vars = ['MACHINE', 'TUNE_ARCH', 'DEPLOY_DIR_IMAGE', \
51 'IMAGE_NAME', 'IMAGE_LINK_NAME', 'STAGING_DIR_NATIVE', \
52 'STAGING_BINDIR_NATIVE', 'STAGING_DIR_HOST']
53
54 # Vars from bsp
55 qb_vars = []
56 for k in d.keys():
57 if k.startswith('QB_'):
58 qb_vars.append(k)
59
60 qemuboot = "%s/%s.qemuboot.conf" % (d.getVar('DEPLOY_DIR_IMAGE', True), d.getVar('IMAGE_NAME', True))
61 qemuboot_link = "%s/%s.qemuboot.conf" % (d.getVar('DEPLOY_DIR_IMAGE', True), d.getVar('IMAGE_LINK_NAME', True))
62 cf = configparser.ConfigParser()
63 cf.add_section('config_bsp')
64 for k in build_vars + qb_vars:
65 cf.set('config_bsp', k, '%s' % d.getVar(k, True))
66 with open(qemuboot, 'w') as f:
67 cf.write(f)
68
69 if d.getVar('RM_OLD_IMAGE', True) == "1" and os.path.exists(qemuboot_link):
70 os.remove(os.path.realpath(qemuboot_link))
71
72 if os.path.lexists(qemuboot_link):
73 os.remove(qemuboot_link)
74 os.symlink(os.path.basename(qemuboot), qemuboot_link)
75}