From fc4834a8deae27579897d86d82c6f2335636a092 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 3 Jun 2025 15:06:15 +0100 Subject: [PATCH] kernel-fit-image: Exclude from world Recipes using this class are designed to be pulled in by dependencies and the recipe doesn't build unless the kernel is appropriately configured. Mark as not suitable for world builds as a result to avoid world build failures. Signed-off-by: Richard Purdie --- meta/classes-recipe/kernel-fit-image.bbclass | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/classes-recipe/kernel-fit-image.bbclass b/meta/classes-recipe/kernel-fit-image.bbclass index 6d80cd4bb47..d2eebb88bc2 100644 --- a/meta/classes-recipe/kernel-fit-image.bbclass +++ b/meta/classes-recipe/kernel-fit-image.bbclass @@ -7,6 +7,9 @@ UNPACKDIR = "${S}" PACKAGE_ARCH = "${MACHINE_ARCH}" +# This bbclass requires KERNEL_CLASSES += "kernel-fit-extra-artifacts" +EXCLUDE_FROM_WORLD = "1" + DEPENDS += "\ u-boot-tools-native dtc-native \ ${@'kernel-signing-keys-native' if d.getVar('FIT_GENERATE_KEYS') == '1' else ''} \ -- 2.47.3