Message ID | 20250604083145.3784091-1-richard.purdie@linuxfoundation.org |
---|---|
State | Accepted, archived |
Commit | fc4834a8deae27579897d86d82c6f2335636a092 |
Headers | show |
Series | kernel-fit-image: Exclude from world | expand |
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 ''} \
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 <richard.purdie@linuxfoundation.org> --- meta/classes-recipe/kernel-fit-image.bbclass | 3 +++ 1 file changed, 3 insertions(+)