From: Marc Gonzalez Date: Tue, 5 Apr 2016 11:09:40 +0000 (+0200) Subject: ltp-testsuite: build kernel modules when appropriate X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=44df0aeb6a61ee75db2be99418bca722b93a29ba;p=buildroot.git ltp-testsuite: build kernel modules when appropriate If we're building a kernel, we can also build LTP's test modules. Signed-off-by: Marc Gonzalez Signed-off-by: Thomas Petazzoni --- diff --git a/package/ltp-testsuite/ltp-testsuite.mk b/package/ltp-testsuite/ltp-testsuite.mk index 8adfdef68d..cf48072f81 100644 --- a/package/ltp-testsuite/ltp-testsuite.mk +++ b/package/ltp-testsuite/ltp-testsuite.mk @@ -13,6 +13,14 @@ LTP_TESTSUITE_CONF_OPTS += \ --with-power-management-testsuite \ --with-realtime-testsuite +ifeq ($(BR2_LINUX_KERNEL),y) +LTP_TESTSUITE_DEPENDENCIES += linux +LTP_TESTSUITE_MAKE_ENV += $(LINUX_MAKE_FLAGS) +LTP_TESTSUITE_CONF_OPTS += --with-linux-dir=$(LINUX_DIR) +else +LTP_TESTSUITE_CONF_OPTS += --without-modules +endif + # Needs libcap with file attrs which needs attr, so both required ifeq ($(BR2_PACKAGE_LIBCAP)$(BR2_PACKAGE_ATTR),yy) LTP_TESTSUITE_DEPENDENCIES += libcap