From 438190a4718a6b044bbd3e39b399fc43ca5728d9 Mon Sep 17 00:00:00 2001 From: Chen Qi Date: Mon, 16 Aug 2021 17:25:56 +0800 Subject: [PATCH] layer.conf: add back append to BB_HASHBASE_WHITELIST Add back the append override, as the '+=' operator will make the default value of BB_HASHBASE_WHITELIST in oe-core not have any effect. Signed-off-by: Chen Qi --- meta-integrity/conf/layer.conf | 2 +- meta-signing-key/conf/layer.conf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-integrity/conf/layer.conf b/meta-integrity/conf/layer.conf index 0a1deb8..8be64f6 100644 --- a/meta-integrity/conf/layer.conf +++ b/meta-integrity/conf/layer.conf @@ -24,7 +24,7 @@ LAYERRECOMMENDS_integrity = "\ tpm \ " -BB_HASHBASE_WHITELIST += "\ +BB_HASHBASE_WHITELIST:append += "\ RPM_FSK_PATH \ " diff --git a/meta-signing-key/conf/layer.conf b/meta-signing-key/conf/layer.conf index 637fee3..77507b2 100644 --- a/meta-signing-key/conf/layer.conf +++ b/meta-signing-key/conf/layer.conf @@ -64,7 +64,7 @@ RPM_GPG_PASSPHRASE ??= "SecureCore" BOOT_GPG_NAME ??= "SecureBootCore" BOOT_GPG_PASSPHRASE ??= "SecureCore" -BB_HASHBASE_WHITELIST += "\ +BB_HASHBASE_WHITELIST:append += "\ SYSTEM_TRUSTED_KEYS_DIR \ SECONDARY_TRUSTED_KEYS_DIR \ MODSIGN_KEYS_DIR \