From d76a83fa38f2010a978e8d234328334cbebf1619 Mon Sep 17 00:00:00 2001 From: Hector Palacios Date: Thu, 7 Sep 2023 09:30:28 +0200 Subject: [PATCH] ccmp1: fix default BOOTDEVICE_LABELS and set default BOOTSCHEME_LABELS BOOTDEVICE_LABELS defines the supported boot device (NAND by default). BOOTSCHEME_LABELS defines the which kind of boot is supported. Signed-off-by: Hector Palacios --- meta-digi-arm/conf/machine/include/ccmp1.inc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meta-digi-arm/conf/machine/include/ccmp1.inc b/meta-digi-arm/conf/machine/include/ccmp1.inc index 60f9c285a..272f1df3f 100644 --- a/meta-digi-arm/conf/machine/include/ccmp1.inc +++ b/meta-digi-arm/conf/machine/include/ccmp1.inc @@ -46,7 +46,9 @@ MACHINE_EXTRA_RDEPENDS += " \ IMAGE_FSTYPES:remove = "ext4 tar.xz" # List of supported boot devices -BOOTDEVICE_LABELS ?= "sdcard" +BOOTDEVICE_LABELS ?= "nand-4-256" +# Supported boot schemes +BOOTSCHEME_LABELS ?= "optee" # Wic files WKS_FILE += "ccmp1.wks.in"