summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYi Zhao <yi.zhao@windriver.com>2019-08-19 15:41:58 +0800
committerYi Zhao <yi.zhao@windriver.com>2019-08-19 16:44:20 +0800
commit0ae8bf25f1a953bf0eabbdecdcc8bc65eb6c34f1 (patch)
treec6c827ddd7ec7c17950b5d99d5e46bd0684365fd
parent1be79730bf8bf32a68800bd12dacda0773bb44fb (diff)
downloadmeta-secure-core-0ae8bf25f1a953bf0eabbdecdcc8bc65eb6c34f1.tar.gz
meta-signing-key/conf/layer.conf: use weak assignment for RPM_GPG_NAME and RPM_GPG_PASSPHRASE
Use weak assignment for RPM_GPG_NAME and RPM_GPG_PASSPHRASE so these values could be overridden in other conf files. Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
-rw-r--r--meta-signing-key/conf/layer.conf4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-signing-key/conf/layer.conf b/meta-signing-key/conf/layer.conf
index a6c93a3..494deb2 100644
--- a/meta-signing-key/conf/layer.conf
+++ b/meta-signing-key/conf/layer.conf
@@ -47,8 +47,8 @@ VENDOR_UUID = "1f7b9654-2107-4697-8f1c-0cbc38874588"
47UEFI_SIG_OWNER_GUID ??= "${VENDOR_UUID}" 47UEFI_SIG_OWNER_GUID ??= "${VENDOR_UUID}"
48 48
49SAMPLE_RPM_KEYNAME ??= "SecureCore" 49SAMPLE_RPM_KEYNAME ??= "SecureCore"
50RPM_GPG_NAME ?= "${SAMPLE_RPM_KEYNAME}" 50RPM_GPG_NAME ??= "${SAMPLE_RPM_KEYNAME}"
51RPM_GPG_PASSPHRASE ?= "SecureCore" 51RPM_GPG_PASSPHRASE ??= "SecureCore"
52 52
53BB_HASHBASE_WHITELIST_append += "\ 53BB_HASHBASE_WHITELIST_append += "\
54 SYSTEM_TRUSTED_KEYS_DIR \ 54 SYSTEM_TRUSTED_KEYS_DIR \