2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2013-04-14 23:29:19 +02:00
|
|
|
#
|
|
|
|
# kmod
|
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2013-04-14 23:29:19 +02:00
|
|
|
|
2013-08-28 17:13:08 +02:00
|
|
|
KMOD_VERSION = 15
|
2012-01-19 12:25:22 +01:00
|
|
|
KMOD_SOURCE = kmod-$(KMOD_VERSION).tar.xz
|
2012-03-08 22:36:51 +01:00
|
|
|
KMOD_SITE = $(BR2_KERNEL_MIRROR)/linux/utils/kernel/kmod/
|
2012-01-19 12:25:22 +01:00
|
|
|
KMOD_INSTALL_STAGING = YES
|
2012-10-22 17:47:52 +02:00
|
|
|
KMOD_DEPENDENCIES = host-pkgconf
|
2013-09-04 10:54:20 +02:00
|
|
|
HOST_KMOD_DEPENDENCIES = host-pkgconf
|
2012-01-16 16:04:36 +01:00
|
|
|
|
2013-08-27 19:28:32 +02:00
|
|
|
# Some patches are touching configure.ac
|
2013-08-28 18:10:32 +02:00
|
|
|
KMOD_AUTORECONF = YES
|
2013-08-27 19:28:32 +02:00
|
|
|
HOST_KMOD_AUTORECONF = YES
|
2013-08-28 18:10:32 +02:00
|
|
|
|
2013-06-03 18:03:35 +02:00
|
|
|
# license info for libkmod only, conditionally add more below
|
|
|
|
KMOD_LICENSE = LGPLv2.1+
|
|
|
|
KMOD_LICENSE_FILES = libkmod/COPYING
|
|
|
|
|
2013-07-03 21:40:53 +02:00
|
|
|
# static linking not supported, see
|
|
|
|
# https://git.kernel.org/cgit/utils/kernel/kmod/kmod.git/commit/?id=b7016153ec8
|
|
|
|
KMOD_CONF_OPT = --disable-static --enable-shared
|
|
|
|
|
2012-11-08 16:25:31 +01:00
|
|
|
ifneq ($(BR2_HAVE_DOCUMENTATION),y)
|
|
|
|
KMOD_CONF_OPT += --disable-manpages
|
|
|
|
endif
|
|
|
|
|
2012-03-22 16:02:14 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
|
|
|
KMOD_DEPENDENCIES += zlib
|
|
|
|
KMOD_CONF_OPT += --with-zlib
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_XZ),y)
|
|
|
|
KMOD_DEPENDENCIES += xz
|
|
|
|
KMOD_CONF_OPT += --with-xz
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_KMOD_TOOLS),y)
|
2013-06-03 18:03:35 +02:00
|
|
|
|
|
|
|
# add license info for kmod tools
|
|
|
|
KMOD_LICENSE += GPLv2+
|
|
|
|
KMOD_LICENSE_FILES += COPYING
|
|
|
|
|
2013-09-02 23:01:01 +02:00
|
|
|
# take precedence over busybox implementation
|
|
|
|
KMOD_DEPENDENCIES += $(if $(BR2_PACKAGE_BUSYBOX),busybox)
|
2012-03-22 16:02:14 +01:00
|
|
|
|
|
|
|
define KMOD_INSTALL_TOOLS
|
2013-08-27 19:28:31 +02:00
|
|
|
for i in depmod insmod lsmod modinfo modprobe rmmod; do \
|
|
|
|
ln -sf ../usr/bin/kmod $(TARGET_DIR)/sbin/$$i; \
|
|
|
|
done
|
2012-03-22 16:02:14 +01:00
|
|
|
endef
|
|
|
|
|
|
|
|
KMOD_POST_INSTALL_TARGET_HOOKS += KMOD_INSTALL_TOOLS
|
|
|
|
else
|
|
|
|
KMOD_CONF_OPT += --disable-tools
|
|
|
|
endif
|
|
|
|
|
2013-08-27 19:28:32 +02:00
|
|
|
# We only install depmod, since that's the only tool used for the
|
|
|
|
# host.
|
|
|
|
define HOST_KMOD_INSTALL_TOOLS
|
|
|
|
mkdir -p $(HOST_DIR)/sbin/
|
|
|
|
ln -sf ../usr/bin/kmod $(HOST_DIR)/sbin/depmod
|
|
|
|
endef
|
|
|
|
|
|
|
|
HOST_KMOD_POST_INSTALL_HOOKS += HOST_KMOD_INSTALL_TOOLS
|
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(autotools-package))
|
2013-08-27 19:28:32 +02:00
|
|
|
$(eval $(host-autotools-package))
|