mirror of
https://git.yoctoproject.org/meta-security
synced 2026-07-16 15:57:21 +00:00
06979d5548
Append to IMAGE_INSTALL rather than directly setting the variable and does it after inheriting core-image.bbclass because in it IMAGE_INSTALL is set with a default value CORE_IMAGE_BASE_INSTALL. Variable CORE_IMAGE_BASE_INSTALL includes CORE_IMAGE_EXTRA_INSTALL so the change allows adding auditd to CORE_IMAGE_EXTRA_INSTALL as per the instructions in meta-integrity/README.md. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
20 lines
405 B
BlitzBasic
20 lines
405 B
BlitzBasic
DESCRIPTION = "An image as an exmaple for Ima support"
|
|
|
|
IMAGE_FEATURES += "ssh-server-openssh"
|
|
|
|
LICENSE = "MIT"
|
|
|
|
inherit core-image
|
|
|
|
IMAGE_INSTALL += "\
|
|
packagegroup-base \
|
|
packagegroup-core-boot \
|
|
packagegroup-ima-evm-utils \
|
|
os-release"
|
|
|
|
export IMAGE_BASENAME = "integrity-image-minimal"
|
|
|
|
INHERIT += "ima-evm-rootfs"
|
|
|
|
QB_KERNEL_CMDLINE_APPEND:append = " ima_policy=tcb ima_appraise=fix"
|