From 173c9d887e13a20a0fe337c55dbfeeb975514956 Mon Sep 17 00:00:00 2001 From: Jon Mason Date: Thu, 20 Apr 2023 08:46:41 -0400 Subject: [PATCH] arm-bsp/tc1: Fix signed u-boot Recent changes in upstream u-boot recipes for signed fitimages, have caused the existing code to no longer boot. Add a newly required variable to get it working again. Tested using tc1 FVP. Signed-off-by: Jon Mason --- meta-arm-bsp/conf/machine/include/tc.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-arm-bsp/conf/machine/include/tc.inc b/meta-arm-bsp/conf/machine/include/tc.inc index f51497de..59a11b27 100644 --- a/meta-arm-bsp/conf/machine/include/tc.inc +++ b/meta-arm-bsp/conf/machine/include/tc.inc @@ -21,6 +21,7 @@ UBOOT_MKIMAGE_DTCOPTS = "-I dts -O dtb" UBOOT_SIGN_KEYNAME = "dev_key" UBOOT_SIGN_KEYDIR = "${DEPLOY_DIR_IMAGE}/keys" FIT_GENERATE_KEYS = "1" +FIT_SIGN_INDIVIDUAL = "1" PREFERRED_PROVIDER_virtual/kernel ?= "linux-arm64-ack"