mirror of
https://git.yoctoproject.org/meta-arm
synced 2026-01-11 15:00:39 +00:00
16 lines
498 B
PHP
16 lines
498 B
PHP
# This files is added when DISTRO_FEATURES contains arm-autonomy-guest
|
|
|
|
# We need to have ipv4 activated
|
|
DISTRO_FEATURES:append = " ipv4"
|
|
|
|
# Build a xenguest type image
|
|
IMAGE_CLASSES += "image_types_xenguest"
|
|
IMAGE_FSTYPES += "xenguest"
|
|
|
|
# xenguest kernel extension to handle initramfs
|
|
KERNEL_CLASSES += "kernel-xenguest"
|
|
|
|
IMAGE_INSTALL:append = "${@bb.utils.contains('DISTRO_FEATURES', 'docker', \
|
|
' packagegroup-docker-runtime-minimal', \
|
|
'', d)}"
|