mirror of
https://git.yoctoproject.org/meta-security
synced 2026-01-11 15:00:34 +00:00
integrity-image-minimal: Fix IMAGE_INSTALL
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>
This commit is contained in:
@@ -2,18 +2,16 @@ DESCRIPTION = "An image as an exmaple for Ima support"
|
||||
|
||||
IMAGE_FEATURES += "ssh-server-openssh"
|
||||
|
||||
LICENSE = "MIT"
|
||||
|
||||
IMAGE_INSTALL = "\
|
||||
inherit core-image
|
||||
|
||||
IMAGE_INSTALL += "\
|
||||
packagegroup-base \
|
||||
packagegroup-core-boot \
|
||||
packagegroup-ima-evm-utils \
|
||||
os-release"
|
||||
|
||||
|
||||
LICENSE = "MIT"
|
||||
|
||||
inherit core-image
|
||||
|
||||
export IMAGE_BASENAME = "integrity-image-minimal"
|
||||
|
||||
INHERIT += "ima-evm-rootfs"
|
||||
|
||||
Reference in New Issue
Block a user