From: Richard Purdie Date: Tue, 3 Jun 2025 14:06:15 +0000 (+0100) Subject: kernel-fit-image: Exclude from world X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fc4834a8deae27579897d86d82c6f2335636a092;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 --- 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 ''} \