mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-05 14:09:53 +03:00
In order to not depend on module init tools being installed on the development environment of the Buildroot user, let's build module init tools for the host. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
22 lines
738 B
Makefile
22 lines
738 B
Makefile
#############################################################
|
|
#
|
|
# module-init-tools
|
|
#
|
|
#############################################################
|
|
MODULE_INIT_TOOLS_VERSION=3.11
|
|
MODULE_INIT_TOOLS_SOURCE=module-init-tools-$(MODULE_INIT_TOOLS_VERSION).tar.bz2
|
|
MODULE_INIT_TOOLS_SITE=$(BR2_KERNEL_MIRROR)/linux/utils/kernel/module-init-tools/
|
|
MODULE_INIT_TOOLS_CONF_OPT = \
|
|
--disable-static-utils \
|
|
--disable-builddir \
|
|
--program-transform-name=''
|
|
|
|
# module-init-tools-3.11-add-manpages-config-option.patch is modifying
|
|
# configure.ac and Makefile.am
|
|
MODULE_INIT_TOOLS_AUTORECONF=YES
|
|
HOST_MODULE_INIT_TOOLS_AUTORECONF=YES
|
|
|
|
$(eval $(call AUTOTARGETS,package,module-init-tools))
|
|
$(eval $(call AUTOTARGETS,package,module-init-tools,host))
|
|
|