summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-tpm/README19
-rw-r--r--meta-tpm/classes/sanity-meta-tpm.bbclass10
-rw-r--r--meta-tpm/conf/layer.conf4
3 files changed, 33 insertions, 0 deletions
diff --git a/meta-tpm/README b/meta-tpm/README
index dd662b3..59d2ee3 100644
--- a/meta-tpm/README
+++ b/meta-tpm/README
@@ -1,6 +1,25 @@
1meta-tpm layer 1meta-tpm layer
2============== 2==============
3 3
4The bbappend files for some recipes (e.g. linux-yocto) in this layer need
5to have 'tpm' in DISTRO_FEATURES to have effect.
6To enable them, add in configuration file the following line.
7
8 DISTRO_FEATURES_append = " tmp"
9
10If meta-tpm is included, but tpm is not enabled as a
11distro feature a warning is printed at parse time:
12
13 You have included the meta-tpm layer, but
14 'tpm' has not been enabled in your DISTRO_FEATURES. Some bbappend files
15 and preferred version setting may not take effect.
16
17If you know what you are doing, this warning can be disabled by setting the following
18variable in your configuration:
19
20 SKIP_META_TPM_SANITY_CHECK = 1
21
22
4This layer contains base TPM recipes. 23This layer contains base TPM recipes.
5 24
6Dependencies 25Dependencies
diff --git a/meta-tpm/classes/sanity-meta-tpm.bbclass b/meta-tpm/classes/sanity-meta-tpm.bbclass
new file mode 100644
index 0000000..2f8b52d
--- /dev/null
+++ b/meta-tpm/classes/sanity-meta-tpm.bbclass
@@ -0,0 +1,10 @@
1addhandler tpm_machinecheck
2tpm_machinecheck[eventmask] = "bb.event.SanityCheck"
3python tpm_machinecheck() {
4 skip_check = e.data.getVar('SKIP_META_TPM_SANITY_CHECK') == "1"
5 if 'tpm' not in e.data.getVar('DISTRO_FEATURES').split() and not skip_check:
6 bb.warn("You have included the meta-tpm layer, but \
7'tpm or tpm2' has not been enabled in your DISTRO_FEATURES. Some bbappend files \
8and preferred version setting may not take effect. See the meta-tpm README \
9for details on enabling tpm support.")
10}
diff --git a/meta-tpm/conf/layer.conf b/meta-tpm/conf/layer.conf
index 1b766cb..0b102c5 100644
--- a/meta-tpm/conf/layer.conf
+++ b/meta-tpm/conf/layer.conf
@@ -17,6 +17,10 @@ LAYERDEPENDS_tpm-layer = " \
17" 17"
18BBLAYERS_LAYERINDEX_NAME_tpm-layer = "meta-tpm" 18BBLAYERS_LAYERINDEX_NAME_tpm-layer = "meta-tpm"
19 19
20# Sanity check for meta-integrity layer.
21# Setting SKIP_META_TPM_SANITY_CHECK to "1" would skip the bbappend files check.
22INHERIT += "sanity-meta-tpm"
23
20BBFILES_DYNAMIC += " \ 24BBFILES_DYNAMIC += " \
21networking-layer:${LAYERDIR}/dynamic-layers/meta-networking/recipes-*/*/*.bbappend \ 25networking-layer:${LAYERDIR}/dynamic-layers/meta-networking/recipes-*/*/*.bbappend \
22" 26"