* [Buildroot] [PATCH v3] linux: Build and install kernel selftests
@ 2016-03-16 3:26 Cyril Bur
2016-03-20 21:09 ` Thomas Petazzoni
0 siblings, 1 reply; 2+ messages in thread
From: Cyril Bur @ 2016-03-16 3:26 UTC (permalink / raw)
To: buildroot
This patch simply adds the ability to compile and install the kernel
selftests into the target at /usr/lib/kselftests. The rationale behind
/usr/lib is that the selftests have subdirectories where they are installed
which makes them unsuitable to be placed in /usr/sbin as this would result
in /usr/sbin/kselftests/x/y/z. While the selftests aren't libraries either,
they don't achieve much as a standalone binary so they can be considered to
be a 'library of tests' making /usr/lib sensible.
The selftests require that the kernel headers be installed into the kernel
build tree as some of the selftests have a hardcoded CFLAGS to include
kernel headers (CFLAGS += -I../../../../usr/include/). This is most easily
achieved by using the make ... headers_install inside the kernel build dir.
This is likely to be a rarely used debugging/performance feature for
development and unlikely to be used in a production configuration.
Signed-off-by: Cyril Bur <cyrilbur@gmail.com>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Tested-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
---
V2: Address review by Yann E. Morin.
Fixup dependences in the Config.in
Comment the need to use the kernel headers_install target
Place tests in /usr/lib/kselftests in target
Remove installing into staging
V3:
Use ARCH=x86 for i386 as well
Select libcap-ng and popt as some tests need it
linux/Config.tools.in | 20 +++++++++++++++++++
linux/linux-tool-selftests.mk | 46 +++++++++++++++++++++++++++++++++++++++++++
2 files changed, 66 insertions(+)
create mode 100644 linux/linux-tool-selftests.mk
diff --git a/linux/Config.tools.in b/linux/Config.tools.in
index 24ef8cd..f541dc5 100644
--- a/linux/Config.tools.in
+++ b/linux/Config.tools.in
@@ -26,4 +26,24 @@ config BR2_LINUX_KERNEL_TOOL_PERF
https://perf.wiki.kernel.org/
+config BR2_LINUX_KERNEL_TOOL_SELFTESTS
+ bool"selftests"
+ depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS # bash
+ depends on BR2_USE_MMU # bash
+ select BR2_PACKAGE_BASH
+ select BR2_PACKAGE_POPT
+ select BR2_PACKAGE_LIBCAP_NG
+ help
+ Build and install (to /usr/lib/kselftests) kernel selftests.
+
+ Use of this option implies you know the process using and compiling
+ the kernel selftests. The Makefile to build and install these is very
+ noisy and may appear to cause your build to fail for strange reasons.
+
+ This is very much a use at your risk option and may not work for
+ every setup or every architecture.
+
+comment "selftests needs BR2_PACKAGE_BUSYBOX_SHOW_OTHERS"
+ depends on !BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
+
endmenu
diff --git a/linux/linux-tool-selftests.mk b/linux/linux-tool-selftests.mk
new file mode 100644
index 0000000..1378577
--- /dev/null
+++ b/linux/linux-tool-selftests.mk
@@ -0,0 +1,46 @@
+################################################################################
+#
+# selftests
+#
+################################################################################
+
+LINUX_TOOLS += selftests
+
+ifeq ($(KERNEL_ARCH),x86_64)
+SELFTESTS_ARCH=x86
+else
+ifeq ($(KERNEL_ARCH),i386)
+SELFTESTS_ARCH=x86
+else
+SELFTESTS_ARCH=$(KERNEL_ARCH)
+endif
+endif
+
+SELFTESTS_DEPENDENCIES = bash libcap-ng popt
+
+SELFTESTS_MAKE_FLAGS = \
+ $(LINUX_MAKE_FLAGS) \
+ ARCH=$(SELFTESTS_ARCH)
+
+# O must be redefined here to overwrite the one used by Buildroot for
+# out of tree build. We build the selftests in $(@D)/tools/selftests and
+# not just $(@D) so that it isn't built in the root directory of the kernel
+# sources.
+#
+# The headers_install step here is important as some kernel selftests use a
+# hardcoded CFLAGS to find kernel headers e.g:
+# CFLAGS += -I../../../../usr/include/
+# The headers_install target will install the kernel headers locally inside
+# the Linux build dir
+define SELFTESTS_BUILD_CMDS
+ $(TARGET_MAKE_ENV) $(MAKE1) -C $(@D) $(SELFTESTS_MAKE_FLAGS) \
+ headers_install
+ $(TARGET_MAKE_ENV) $(MAKE1) -C $(@D)/tools/testing/selftests \
+ $(SELFTESTS_MAKE_FLAGS) O=$(@D)/tools/testing/selftests
+endef
+
+define SELFTESTS_INSTALL_TARGET_CMDS
+ $(TARGET_MAKE_ENV) $(MAKE1) -C $(@D)/tools/testing/selftests \
+ $(SELFTESTS_MAKE_FLAGS) O=$(@D)/tools/testing/selftests \
+ INSTALL_PATH=$(TARGET_DIR)/usr/lib/kselftests install
+endef
--
2.7.3
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [Buildroot] [PATCH v3] linux: Build and install kernel selftests
2016-03-16 3:26 [Buildroot] [PATCH v3] linux: Build and install kernel selftests Cyril Bur
@ 2016-03-20 21:09 ` Thomas Petazzoni
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni @ 2016-03-20 21:09 UTC (permalink / raw)
To: buildroot
Hello,
On Wed, 16 Mar 2016 14:26:33 +1100, Cyril Bur wrote:
> +config BR2_LINUX_KERNEL_TOOL_SELFTESTS
> + bool"selftests"
> + depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS # bash
> + depends on BR2_USE_MMU # bash
> + select BR2_PACKAGE_BASH
> + select BR2_PACKAGE_POPT
> + select BR2_PACKAGE_LIBCAP_NG
> + help
> + Build and install (to /usr/lib/kselftests) kernel selftests.
> +
> + Use of this option implies you know the process using and compiling
There was a typo here, a missing word between "process" and "using".
> + the kernel selftests. The Makefile to build and install these is very
> + noisy and may appear to cause your build to fail for strange reasons.
> +
> + This is very much a use at your risk option and may not work for
> + every setup or every architecture.
Those lines were slightly too long.
> +
> +comment "selftests needs BR2_PACKAGE_BUSYBOX_SHOW_OTHERS"
> + depends on !BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
You should have replicated the BR2_USE_MMU dependency here.
> +SELFTESTS_DEPENDENCIES = bash libcap-ng popt
bash is not needed at build time, it's only a runtime dependency, so
I've removed it from this variable (but kept it as a select in
Config.in, and added a comment that indicates it's a runtime
dependency).
It's worth noting that with uClibc, a number of tests fail to build,
but I guess that's expected, and it doesn't abort the build.
I've applied with the fixes I mentioned above.
Thanks!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-03-20 21:09 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-16 3:26 [Buildroot] [PATCH v3] linux: Build and install kernel selftests Cyril Bur
2016-03-20 21:09 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox