blob: 9c820495f4de6c405263cc75503f00a670cd1d11 [file] [log] [blame]
Richard Marian Thomaiyar14fddef2018-07-13 23:55:56 +05301DESCRIPTION = "A small image for building meta-security packages"
2
3IMAGE_FEATURES += "ssh-server-openssh"
4
5IMAGE_INSTALL = "\
Andrew Geissler615f2f12022-07-15 14:00:58 -05006 ${@bb.utils.contains("DISTRO_FEATURES", "lkrg", "lkrg-module", "",d)} \
Richard Marian Thomaiyar14fddef2018-07-13 23:55:56 +05307 packagegroup-base \
8 packagegroup-core-boot \
9 packagegroup-core-security \
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080010 os-release"
Richard Marian Thomaiyar14fddef2018-07-13 23:55:56 +053011
12IMAGE_LINGUAS ?= " "
13
14LICENSE = "MIT"
15
16inherit core-image
17
18export IMAGE_BASENAME = "security-build-image"
19
20IMAGE_ROOTFS_EXTRA_SPACE = "5242880"
Patrick Williams2a254922023-08-11 09:48:11 -050021
22QB_KERNEL_CMDLINE_APPEND = " ${@bb.utils.contains('DISTRO_FEATURES', 'apparmor', 'apparmor=1 security=apparmor', '', d)}"
23
24# We need more mem to run many apps in this layer
25QB_MEM = "-m 2048"