summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2025-06-03 15:06:15 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-06-05 11:02:22 +0100
commitbcfe285bb166f2507931d6f08cec659eddb3e5d7 (patch)
tree64e772870c4b9a9b8266026e6b28d7ecceed788e
parent1d8c78c8cd68f77ff509c053f0608eb4391c0121 (diff)
downloadpoky-bcfe285bb166f2507931d6f08cec659eddb3e5d7.tar.gz
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. (From OE-Core rev: fc4834a8deae27579897d86d82c6f2335636a092) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes-recipe/kernel-fit-image.bbclass3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/classes-recipe/kernel-fit-image.bbclass b/meta/classes-recipe/kernel-fit-image.bbclass
index 6d80cd4bb4..d2eebb88bc 100644
--- a/meta/classes-recipe/kernel-fit-image.bbclass
+++ b/meta/classes-recipe/kernel-fit-image.bbclass
@@ -7,6 +7,9 @@ UNPACKDIR = "${S}"
7 7
8PACKAGE_ARCH = "${MACHINE_ARCH}" 8PACKAGE_ARCH = "${MACHINE_ARCH}"
9 9
10# This bbclass requires KERNEL_CLASSES += "kernel-fit-extra-artifacts"
11EXCLUDE_FROM_WORLD = "1"
12
10DEPENDS += "\ 13DEPENDS += "\
11 u-boot-tools-native dtc-native \ 14 u-boot-tools-native dtc-native \
12 ${@'kernel-signing-keys-native' if d.getVar('FIT_GENERATE_KEYS') == '1' else ''} \ 15 ${@'kernel-signing-keys-native' if d.getVar('FIT_GENERATE_KEYS') == '1' else ''} \