summaryrefslogtreecommitdiffstats
path: root/images/secure-boot.inc
diff options
context:
space:
mode:
Diffstat (limited to 'images/secure-boot.inc')
-rw-r--r--images/secure-boot.inc18
1 files changed, 18 insertions, 0 deletions
diff --git a/images/secure-boot.inc b/images/secure-boot.inc
new file mode 100644
index 0000000..d482ae1
--- /dev/null
+++ b/images/secure-boot.inc
@@ -0,0 +1,18 @@
1SECURE_CORE_IMAGE_EXTRA_INSTALL_append += "\
2 ${@bb.utils.contains("DISTRO_FEATURES", "efi-secure-boot", \
3 "packagegroup-efi-secure-boot", "", d)} \
4 ${@bb.utils.contains("DISTRO_FEATURES", "tpm", \
5 "packagegroup-tpm", "", d)} \
6 ${@bb.utils.contains("DISTRO_FEATURES", "tpm2", \
7 "packagegroup-tpm2", "", d)} \
8 ${@bb.utils.contains("DISTRO_FEATURES", "ima", \
9 "packagegroup-ima", "", d)} \
10 ${@bb.utils.contains("DISTRO_FEATURES", "luks", \
11 "packagegroup-luks", "", d)} \
12 ${@bb.utils.contains("DISTRO_FEATURES", "ids", \
13 "packagegroup-ids", "", d)} \
14"
15
16IMAGE_INSTALL += "\
17 ${SECURE_CORE_IMAGE_EXTRA_INSTALL} \
18"