summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes-recipe/uboot-sign.bbclass6
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/classes-recipe/uboot-sign.bbclass b/meta/classes-recipe/uboot-sign.bbclass
index 3065c54577..ad04c82378 100644
--- a/meta/classes-recipe/uboot-sign.bbclass
+++ b/meta/classes-recipe/uboot-sign.bbclass
@@ -81,6 +81,10 @@ UBOOT_FIT_KEY_REQ_ARGS ?= "-batch -new"
81# Standard format for public key certificate 81# Standard format for public key certificate
82UBOOT_FIT_KEY_SIGN_PKCS ?= "-x509" 82UBOOT_FIT_KEY_SIGN_PKCS ?= "-x509"
83 83
84# length of address in number of <u32> cells
85# ex: 1 32bits address, 2 64bits address
86UBOOT_FIT_ADDRESS_CELLS ?= "1"
87
84# This is only necessary for determining the signing configuration 88# This is only necessary for determining the signing configuration
85KERNEL_PN = "${PREFERRED_PROVIDER_virtual/kernel}" 89KERNEL_PN = "${PREFERRED_PROVIDER_virtual/kernel}"
86 90
@@ -234,7 +238,7 @@ uboot_fitimage_assemble() {
234 238
235/ { 239/ {
236 description = "${UBOOT_FIT_DESC}"; 240 description = "${UBOOT_FIT_DESC}";
237 #address-cells = <1>; 241 #address-cells = <${UBOOT_FIT_ADDRESS_CELLS}>;
238 242
239 images { 243 images {
240 uboot { 244 uboot {