diff options
author | Scott Murray <scott.murray@konsulko.com> | 2022-11-23 13:36:06 -0500 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2022-11-23 13:36:06 -0500 |
commit | f65296a9c598ae81620e6c1d64ecf5f83bd11dee (patch) | |
tree | f70e3107ff2710bbc63601fd0cb36cd39ea3f4aa /conf/multiconfig | |
parent | 2848a3d0591c7d0c9e97f208f00899a0f254ad0a (diff) |
Add agl-kvm feature template
Add feature template for enabling agl-kvm-guest multiconfig. Changes
to leverage this to add a host image that includes guest VM images
will follow.
Bug-AGL: SPEC-4618
Change-Id: If8134359a1da7709d81b4ddd186d8c22de05280d
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Diffstat (limited to 'conf/multiconfig')
-rw-r--r-- | conf/multiconfig/agl-kvm-guest.conf | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/conf/multiconfig/agl-kvm-guest.conf b/conf/multiconfig/agl-kvm-guest.conf new file mode 100644 index 000000000..b13630db4 --- /dev/null +++ b/conf/multiconfig/agl-kvm-guest.conf @@ -0,0 +1,24 @@ +TMPDIR = "${TOPDIR}/tmp-${BB_CURRENT_MC}" + +MACHINE = "virtio-aarch64" + +# Avoid parse errors caused by linux-renesas, and all the other +# random bbappends in meta-rcar-gen3. +BBMASK += "meta-rcar-gen3/ meta-agl-refhw-gen3/" + +DISTRO_FEATURES:append = " kvm virtualization" + +# Use our own wks file +WKS_FILE = "directdisk.wks.in" + +# We only need ext4 images for guests for now +AGL_DEFAULT_IMAGE_FSTYPES = "ext4" +AGL_EXTRA_IMAGE_FSTYPES = "" + +# Need to run QEMU with virtio-gpu device +#PACKAGECONFIG:append:pn-qemu-system-native = " virglrenderer glx gtk+" +PACKAGECONFIG:append:pn-qemu-system-target = " virglrenderer glx" + +# Until aglsetup.sh potentially changes to split features per multiconfig, +# remove problematic ones from the host build here +AGL_FEATURES:remove = "agl-refhw-h3" |