diff options
author | Armin Kuster <akuster808@gmail.com> | 2017-05-07 22:51:53 -0700 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2017-05-08 08:39:54 -0700 |
commit | 69a55868888e31f6e39aed009a737701139cf862 (patch) | |
tree | a12041a8e811dd8528a867a32331630bf19740a5 | |
parent | fcbd8a33d4257dd56080e50dd02e6da3f6c5a441 (diff) | |
download | meta-security-69a55868888e31f6e39aed009a737701139cf862.tar.gz |
tpm-image: used for testing for now.
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta-tpm/recipes-core/images/security-tpm-image.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/meta-tpm/recipes-core/images/security-tpm-image.bb b/meta-tpm/recipes-core/images/security-tpm-image.bb new file mode 100644 index 0000000..a337076 --- /dev/null +++ b/meta-tpm/recipes-core/images/security-tpm-image.bb | |||
@@ -0,0 +1,19 @@ | |||
1 | DESCRIPTION = "A small image for building meta-security packages" | ||
2 | |||
3 | IMAGE_FEATURES += "ssh-server-openssh" | ||
4 | |||
5 | IMAGE_INSTALL = "\ | ||
6 | packagegroup-base \ | ||
7 | packagegroup-core-boot \ | ||
8 | ${@bb.utils.contains('MACHINE_FEATURES', 'tpm', 'packagegroup-security-tpm', '', d)} \ | ||
9 | ${@bb.utils.contains('MACHINE_FEATURES', 'tpm2', 'packagegroup-security-tpm2', '', d)} \ | ||
10 | os-release \ | ||
11 | ${CORE_IMAGE_EXTRA_INSTALL}" | ||
12 | |||
13 | IMAGE_LINGUAS ?= " " | ||
14 | |||
15 | LICENSE = "MIT" | ||
16 | |||
17 | inherit core-image | ||
18 | |||
19 | export IMAGE_BASENAME = "security-tpm-image" | ||