summaryrefslogtreecommitdiffstats
path: root/meta/classes/uboot-config.bbclass
diff options
context:
space:
mode:
authorKlaus Heinrich Kiwi <klaus@linux.vnet.ibm.com>2021-03-26 17:14:09 -0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-04-06 11:36:51 +0100
commit575cf33e6b7124899f2eb7c72afb67e67ad2a449 (patch)
tree7e532028097df4cce16de2e7f50a107bd04a7138 /meta/classes/uboot-config.bbclass
parent49d274b61b01dc3b48c58526c932e701deae3b62 (diff)
downloadpoky-575cf33e6b7124899f2eb7c72afb67e67ad2a449.tar.gz
u-boot: Use a different Key for SPL signing
Duplicate the variables governing u-boot signing so that we can have a different set of keys/parameters signing the SPL. (From OE-Core rev: 0e6b0fefa02356afeb11a32dfee7f0c7c250ab7f) Signed-off-by: Klaus Heinrich Kiwi <klaus@linux.vnet.ibm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/uboot-config.bbclass')
-rw-r--r--meta/classes/uboot-config.bbclass2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/uboot-config.bbclass b/meta/classes/uboot-config.bbclass
index 31487c1418..3bba02828b 100644
--- a/meta/classes/uboot-config.bbclass
+++ b/meta/classes/uboot-config.bbclass
@@ -61,6 +61,7 @@ UBOOT_EXTLINUX_SYMLINK ?= "${UBOOT_EXTLINUX_CONF_NAME}-${MACHINE}-${PR}"
61 61
62# Options for the device tree compiler passed to mkimage '-D' feature: 62# Options for the device tree compiler passed to mkimage '-D' feature:
63UBOOT_MKIMAGE_DTCOPTS ??= "" 63UBOOT_MKIMAGE_DTCOPTS ??= ""
64SPL_MKIMAGE_DTCOPTS ??= ""
64 65
65# mkimage command 66# mkimage command
66UBOOT_MKIMAGE ?= "uboot-mkimage" 67UBOOT_MKIMAGE ?= "uboot-mkimage"
@@ -68,6 +69,7 @@ UBOOT_MKIMAGE_SIGN ?= "${UBOOT_MKIMAGE}"
68 69
69# Arguments passed to mkimage for signing 70# Arguments passed to mkimage for signing
70UBOOT_MKIMAGE_SIGN_ARGS ?= "" 71UBOOT_MKIMAGE_SIGN_ARGS ?= ""
72SPL_MKIMAGE_SIGN_ARGS ?= ""
71 73
72python () { 74python () {
73 ubootmachine = d.getVar("UBOOT_MACHINE") 75 ubootmachine = d.getVar("UBOOT_MACHINE")