mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-02 21:48:20 +03:00
Now that the infra takes care of removing extraneous spaces before
commas, we can safely append to LICENSE variables.
This removes the only case where we had to use immediate assignment
to append to a variable.
Mechanical change, with:
$ sed -r -i -e 's/\<([^[:space:]]+_LICENSE) := \$\(\1\),/\1 += ,/' \
$(git grep -l -E '\<([^[:space:]]+_LICENSE) := \$\(\1\),')
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
87 lines
2.3 KiB
Makefile
87 lines
2.3 KiB
Makefile
################################################################################
|
|
#
|
|
# kmod
|
|
#
|
|
################################################################################
|
|
|
|
KMOD_VERSION = 26
|
|
KMOD_SOURCE = kmod-$(KMOD_VERSION).tar.xz
|
|
KMOD_SITE = $(BR2_KERNEL_MIRROR)/linux/utils/kernel/kmod
|
|
KMOD_INSTALL_STAGING = YES
|
|
# 0002-Do-not-check-for-undefined-symbols-when-building-the.patch
|
|
KMOD_AUTORECONF = YES
|
|
KMOD_DEPENDENCIES = host-pkgconf
|
|
HOST_KMOD_DEPENDENCIES = host-pkgconf
|
|
|
|
# license info for libkmod only, conditionally add more below
|
|
KMOD_LICENSE = LGPL-2.1+ (library)
|
|
KMOD_LICENSE_FILES = libkmod/COPYING
|
|
|
|
# --gc-sections triggers binutils ld segfault
|
|
# https://sourceware.org/bugzilla/show_bug.cgi?id=21180
|
|
ifeq ($(BR2_microblaze),y)
|
|
KMOD_CONF_ENV += cc_cv_LDFLAGS__Wl___gc_sections=false
|
|
endif
|
|
|
|
# static linking not supported, see
|
|
# https://git.kernel.org/cgit/utils/kernel/kmod/kmod.git/commit/?id=b7016153ec8
|
|
KMOD_CONF_OPTS = --disable-static --enable-shared
|
|
|
|
KMOD_CONF_OPTS += --disable-manpages
|
|
HOST_KMOD_CONF_OPTS = --disable-manpages
|
|
|
|
ifeq ($(BR2_PACKAGE_BASH_COMPLETION),y)
|
|
KMOD_CONF_OPTS += --with-bashcompletiondir=/usr/share/bash-completion/completions
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
|
KMOD_DEPENDENCIES += zlib
|
|
KMOD_CONF_OPTS += --with-zlib
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_XZ),y)
|
|
KMOD_DEPENDENCIES += xz
|
|
KMOD_CONF_OPTS += --with-xz
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_PYTHON)$(BR2_PACKAGE_PYTHON3),y)
|
|
KMOD_DEPENDENCIES += $(if $(BR2_PACKAGE_PYTHON),python,python3)
|
|
KMOD_CONF_OPTS += --enable-python
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_KMOD_TOOLS),y)
|
|
|
|
# add license info for kmod tools
|
|
KMOD_LICENSE += , GPL-2.0+ (tools)
|
|
KMOD_LICENSE_FILES += COPYING
|
|
|
|
# /sbin is really /usr/sbin with merged /usr, so adjust relative symlink
|
|
ifeq ($(BR2_ROOTFS_MERGED_USR),y)
|
|
KMOD_BIN_PATH = ../bin/kmod
|
|
else
|
|
KMOD_BIN_PATH = ../usr/bin/kmod
|
|
endif
|
|
|
|
define KMOD_INSTALL_TOOLS
|
|
for i in depmod insmod lsmod modinfo modprobe rmmod; do \
|
|
ln -sf $(KMOD_BIN_PATH) $(TARGET_DIR)/sbin/$$i; \
|
|
done
|
|
endef
|
|
|
|
KMOD_POST_INSTALL_TARGET_HOOKS += KMOD_INSTALL_TOOLS
|
|
else
|
|
KMOD_CONF_OPTS += --disable-tools
|
|
endif
|
|
|
|
# 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 ../bin/kmod $(HOST_DIR)/sbin/depmod
|
|
endef
|
|
|
|
HOST_KMOD_POST_INSTALL_HOOKS += HOST_KMOD_INSTALL_TOOLS
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|