Due to the way the kernel-selftest sources are set up, the toplevel Makefile does not work and `make clean` will always result in a "The source tree is not clean, please run 'make ARCH=... mrproper'" error.
Avoid running it by setting CLEANBROKEN = "1", so rebuilding the recipe without a clean (which often happens when the kernel has changed) does not fail. Signed-off-by: Nora Schiffer <[email protected]> --- meta-oe/recipes-kernel/kernel-selftest/kernel-selftest.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-oe/recipes-kernel/kernel-selftest/kernel-selftest.bb b/meta-oe/recipes-kernel/kernel-selftest/kernel-selftest.bb index 7850ddb6c9..06919c8bba 100644 --- a/meta-oe/recipes-kernel/kernel-selftest/kernel-selftest.bb +++ b/meta-oe/recipes-kernel/kernel-selftest/kernel-selftest.bb @@ -129,6 +129,8 @@ EXTRA_OEMAKE:append:toolchain-clang = "\ HOSTLD="clang ${BUILD_LDFLAGS} -unwindlib=libgcc -rtlib=libgcc -stdlib=libstdc++" \ " +CLEANBROKEN = "1" + KERNEL_SELFTEST_SRC ?= "Makefile \ include \ kernel \ -- TQ-Systems GmbH | Mühlstraße 2, Gut Delling | 82229 Seefeld, Germany Amtsgericht München, HRB 105018 Geschäftsführer: Detlef Schneider, Rüdiger Stahl, Stefan Schneider https://www.tq-group.com/
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#127436): https://lists.openembedded.org/g/openembedded-devel/message/127436 Mute This Topic: https://lists.openembedded.org/mt/119719582/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
