mirror of
https://github.com/jiazhang0/meta-secure-core.git
synced 2026-07-16 12:47:00 +00:00
d5ce74c955
There is already a BBFILE_COLLECTIONS named integrity in meta-security/meta-integrity layer, which will casue conflicts. Rename BBFILE_COLLECTIONS to integrity-layer. Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
32 lines
746 B
Plaintext
32 lines
746 B
Plaintext
# We have a conf and classes directory, add to BBPATH
|
|
BBPATH .= ":${LAYERDIR}"
|
|
|
|
# We have recipes-* directories, add to BBFILES
|
|
BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
|
|
${LAYERDIR}/recipes-*/*/*.bbappend"
|
|
|
|
BBFILE_COLLECTIONS += "integrity-layer"
|
|
BBFILE_PATTERN_integrity-layer = "^${LAYERDIR}/"
|
|
BBFILE_PRIORITY_integrity-layer = "10"
|
|
|
|
IMA_SIGNING_BLACKLIST ??= "${LAYERDIR}/files/ima_signing_blacklist"
|
|
|
|
BBLAYERS_LAYERINDEX_NAME_integrity-layer = "meta-integrity"
|
|
|
|
LAYERDEPENDS_integrity-layer = "\
|
|
core \
|
|
signing-key \
|
|
openembedded-layer \
|
|
"
|
|
|
|
LAYERRECOMMENDS_integrity-layer = "\
|
|
tpm2 \
|
|
tpm \
|
|
"
|
|
|
|
BB_BASEHASH_IGNORE_VARS:append = " \
|
|
RPM_FSK_PATH \
|
|
"
|
|
|
|
LAYERSERIES_COMPAT_integrity-layer = "honister kirkstone langdale"
|