blob: 8dcdb3fbacf3d77a200bca87ee3f84a846321399 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
require recipes-platform/images/agl-image-boot.bb
SUMMARY = "A minimal container guest image"
IMAGE_ROOTFS_EXTRA_SPACE:append = "${@bb.utils.contains("DISTRO_FEATURES", "systemd", " + 4096", "" ,d)}"
IMAGE_INSTALL += " \
packagegroup-agl-container-feature-logging-guest \
"
FEATURE_PACKAGES_selinux:remove = " \
packagegroup-agl-core-selinux \
${@bb.utils.contains('DISTRO_FEATURES', 'agl-devel', 'packagegroup-agl-core-selinux-devel', '', d)} \
"
FEATURE_PACKAGES_selinux:append = " \
packagegroup-agl-core-selinux-guest \
"
NO_RECOMMENDATIONS = "1"
|