mirror of
https://git.yoctoproject.org/meta-security
synced 2026-07-26 19:17:08 +00:00
99d6c136f2
Signed-off-by: Armin Kuster <akuster808@gmail.com>
20 lines
520 B
BlitzBasic
20 lines
520 B
BlitzBasic
DESCRIPTION = "A small image for building meta-security packages"
|
|
|
|
IMAGE_FEATURES += "ssh-server-openssh"
|
|
|
|
IMAGE_INSTALL = "\
|
|
packagegroup-base \
|
|
packagegroup-core-boot \
|
|
${@bb.utils.contains('MACHINE_FEATURES', 'tpm', 'packagegroup-security-tpm', '', d)} \
|
|
${@bb.utils.contains('MACHINE_FEATURES', 'tpm2', 'packagegroup-security-tpm2', '', d)} \
|
|
os-release \
|
|
${CORE_IMAGE_EXTRA_INSTALL}"
|
|
|
|
IMAGE_LINGUAS ?= " "
|
|
|
|
LICENSE = "MIT"
|
|
|
|
inherit core-image
|
|
|
|
export IMAGE_BASENAME = "security-tpm-image"
|