2006-06-27 08:35:46 +08:00
|
|
|
#
|
2011-10-28 21:10:43 +08:00
|
|
|
# Copyright (C) 2006-2011 OpenWrt.org
|
2006-06-27 08:35:46 +08:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2006-11-12 07:11:02 +08:00
|
|
|
|
2007-09-09 03:55:42 +08:00
|
|
|
ifeq ($(__target_inc),)
|
|
|
|
include $(INCLUDE_DIR)/target.mk
|
|
|
|
endif
|
2007-08-26 21:26:02 +08:00
|
|
|
|
2006-06-23 08:49:42 +08:00
|
|
|
ifeq ($(DUMP),1)
|
2006-11-12 07:11:02 +08:00
|
|
|
KERNEL?=<KERNEL>
|
|
|
|
BOARD?=<BOARD>
|
|
|
|
LINUX_VERSION?=<LINUX_VERSION>
|
2012-01-08 23:23:11 +08:00
|
|
|
LINUX_VERMAGIC?=<LINUX_VERMAGIC>
|
2006-06-23 08:49:42 +08:00
|
|
|
else
|
2011-07-25 18:32:38 +08:00
|
|
|
ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),)
|
|
|
|
export GCC_HONOUR_COPTS=s
|
|
|
|
endif
|
2007-07-31 08:52:27 +08:00
|
|
|
|
2010-07-13 00:01:13 +08:00
|
|
|
LINUX_KMOD_SUFFIX=ko
|
|
|
|
|
2006-08-16 08:35:30 +08:00
|
|
|
ifneq (,$(findstring uml,$(BOARD)))
|
2007-10-23 14:23:23 +08:00
|
|
|
KERNEL_CC?=$(HOSTCC)
|
|
|
|
KERNEL_CROSS?=
|
2006-08-16 08:35:30 +08:00
|
|
|
else
|
2007-10-23 14:23:23 +08:00
|
|
|
KERNEL_CC?=$(TARGET_CC)
|
|
|
|
KERNEL_CROSS?=$(TARGET_CROSS)
|
2006-08-16 08:35:30 +08:00
|
|
|
endif
|
2006-07-21 05:06:47 +08:00
|
|
|
|
2010-03-29 11:07:54 +08:00
|
|
|
ifeq ($(TARGET_BUILD),1)
|
|
|
|
PATCH_DIR ?= ./patches$(if $(wildcard ./patches-$(KERNEL_PATCHVER)),-$(KERNEL_PATCHVER))
|
|
|
|
FILES_DIR ?= $(foreach dir,$(wildcard ./files ./files-$(KERNEL_PATCHVER)),"$(dir)")
|
|
|
|
endif
|
2012-12-02 23:26:24 +08:00
|
|
|
KERNEL_BUILD_DIR ?= $(BUILD_DIR)/linux-$(BOARD)$(if $(SUBTARGET),_$(SUBTARGET))
|
2007-08-07 08:04:25 +08:00
|
|
|
LINUX_DIR ?= $(KERNEL_BUILD_DIR)/linux-$(LINUX_VERSION)
|
2012-12-16 19:04:27 +08:00
|
|
|
ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,3.7.0)),1)
|
|
|
|
LINUX_UAPI_DIR=uapi/
|
|
|
|
endif
|
2012-01-08 23:23:11 +08:00
|
|
|
LINUX_VERMAGIC:=$(strip $(shell cat $(LINUX_DIR)/.vermagic 2>/dev/null))
|
|
|
|
LINUX_VERMAGIC:=$(if $(LINUX_VERMAGIC),$(LINUX_VERMAGIC),unknown)
|
|
|
|
|
2011-07-25 05:42:33 +08:00
|
|
|
LINUX_UNAME_VERSION:=$(if $(word 3,$(subst ., ,$(KERNEL_BASE))),$(KERNEL_BASE),$(KERNEL_BASE).0)
|
|
|
|
ifneq ($(findstring -rc,$(LINUX_VERSION)),)
|
|
|
|
LINUX_UNAME_VERSION:=$(LINUX_UNAME_VERSION)-$(strip $(lastword $(subst -, ,$(LINUX_VERSION))))
|
|
|
|
endif
|
|
|
|
|
|
|
|
MODULES_SUBDIR:=lib/modules/$(LINUX_UNAME_VERSION)
|
2006-08-16 08:35:30 +08:00
|
|
|
TARGET_MODULES_DIR := $(LINUX_TARGET_DIR)/$(MODULES_SUBDIR)
|
2006-01-11 03:43:00 +08:00
|
|
|
|
2006-08-16 08:35:30 +08:00
|
|
|
LINUX_KERNEL:=$(KERNEL_BUILD_DIR)/vmlinux
|
2006-11-12 07:11:02 +08:00
|
|
|
|
2012-11-18 16:49:08 +08:00
|
|
|
LINUX_SOURCE:=linux-$(LINUX_VERSION).tar.xz
|
2007-06-16 09:56:04 +08:00
|
|
|
TESTING:=$(if $(findstring -rc,$(LINUX_VERSION)),/testing,)
|
2011-10-03 18:19:25 +08:00
|
|
|
ifeq ($(call qstrip,$(CONFIG_EXTERNAL_KERNEL_TREE))$(call qstrip,$(CONFIG_KERNEL_GIT_CLONE_URI)),)
|
2011-08-09 20:19:38 +08:00
|
|
|
LINUX_SITE:=@KERNEL/linux/kernel/v3.x$(TESTING)
|
2009-12-14 21:54:03 +08:00
|
|
|
endif
|
2006-11-12 07:11:02 +08:00
|
|
|
|
2007-09-10 12:21:21 +08:00
|
|
|
ifneq ($(TARGET_BUILD),1)
|
|
|
|
PKG_BUILD_DIR ?= $(KERNEL_BUILD_DIR)/$(PKG_NAME)$(if $(PKG_VERSION),-$(PKG_VERSION))
|
|
|
|
endif
|
2005-11-02 01:30:26 +08:00
|
|
|
endif
|
2007-09-09 03:55:42 +08:00
|
|
|
|
|
|
|
ifneq (,$(findstring uml,$(BOARD)))
|
2009-03-03 22:55:53 +08:00
|
|
|
LINUX_KARCH=um
|
2014-12-13 02:28:03 +08:00
|
|
|
else ifneq (,$(findstring $(ARCH), aarch64 aarch64_be))
|
|
|
|
LINUX_KARCH := arm64
|
|
|
|
else ifneq (,$(findstring $(ARCH), armeb))
|
|
|
|
LINUX_KARCH := arm
|
|
|
|
else ifneq (,$(findstring $(ARCH), mipsel mips64 mips64el))
|
|
|
|
LINUX_KARCH := mips
|
|
|
|
else ifneq (,$(findstring $(ARCH), sh2 sh3 sh4))
|
|
|
|
LINUX_KARCH := sh
|
2014-12-13 02:28:13 +08:00
|
|
|
else ifneq (,$(findstring $(ARCH), i386 x86_64))
|
2014-12-13 02:28:03 +08:00
|
|
|
LINUX_KARCH := x86
|
2007-09-09 03:55:42 +08:00
|
|
|
else
|
2014-12-13 02:28:03 +08:00
|
|
|
LINUX_KARCH := $(ARCH)
|
2007-09-09 03:55:42 +08:00
|
|
|
endif
|
2005-08-15 18:43:09 +08:00
|
|
|
|
2006-10-18 00:13:10 +08:00
|
|
|
define KernelPackage/Defaults
|
|
|
|
FILES:=
|
|
|
|
AUTOLOAD:=
|
|
|
|
endef
|
|
|
|
|
|
|
|
define ModuleAutoLoad
|
2010-08-19 20:49:37 +08:00
|
|
|
$(SH_FUNC) \
|
2006-10-18 00:13:10 +08:00
|
|
|
export modules=; \
|
2013-09-18 05:45:05 +08:00
|
|
|
probe_module() { \
|
|
|
|
mods="$$$$$$$$1"; \
|
|
|
|
boot="$$$$$$$$2"; \
|
|
|
|
shift 2; \
|
|
|
|
for mod in $$$$$$$$mods; do \
|
2014-11-20 04:16:50 +08:00
|
|
|
mkdir -p $(2)/etc/modules.d; \
|
|
|
|
echo "$$$$$$$$mod" >> $(2)/etc/modules.d/$(1); \
|
2013-09-18 05:45:05 +08:00
|
|
|
done; \
|
|
|
|
if [ -e $(2)/etc/modules.d/$(1) ]; then \
|
|
|
|
if [ "$$$$$$$$boot" = "1" ]; then \
|
|
|
|
mkdir -p $(2)/etc/modules-boot.d; \
|
|
|
|
ln -s ../modules.d/$(1) $(2)/etc/modules-boot.d/; \
|
|
|
|
fi; \
|
|
|
|
modules="$$$$$$$${modules:+$$$$$$$$modules}"; \
|
|
|
|
fi; \
|
|
|
|
}; \
|
2006-10-18 00:13:10 +08:00
|
|
|
add_module() { \
|
2010-10-18 14:58:11 +08:00
|
|
|
priority="$$$$$$$$1"; \
|
|
|
|
mods="$$$$$$$$2"; \
|
|
|
|
boot="$$$$$$$$3"; \
|
|
|
|
shift 3; \
|
2011-10-28 21:10:43 +08:00
|
|
|
for mod in $$$$$$$$mods; do \
|
2014-11-20 04:16:50 +08:00
|
|
|
mkdir -p $(2)/etc/modules.d; \
|
|
|
|
echo "$$$$$$$$mod" >> $(2)/etc/modules.d/$$$$$$$$priority-$(1); \
|
2011-10-28 21:10:43 +08:00
|
|
|
done; \
|
|
|
|
if [ -e $(2)/etc/modules.d/$$$$$$$$priority-$(1) ]; then \
|
|
|
|
if [ "$$$$$$$$boot" = "1" ]; then \
|
2011-10-28 21:10:50 +08:00
|
|
|
mkdir -p $(2)/etc/modules-boot.d; \
|
|
|
|
ln -s ../modules.d/$$$$$$$$priority-$(1) $(2)/etc/modules-boot.d/; \
|
2011-10-28 21:10:43 +08:00
|
|
|
fi; \
|
|
|
|
modules="$$$$$$$${modules:+$$$$$$$$modules }$$$$$$$$priority-$(1)"; \
|
|
|
|
fi; \
|
2006-10-18 00:13:10 +08:00
|
|
|
}; \
|
|
|
|
$(3) \
|
|
|
|
if [ -n "$$$$$$$$modules" ]; then \
|
|
|
|
mkdir -p $(2)/etc/modules.d; \
|
2009-08-17 18:14:25 +08:00
|
|
|
mkdir -p $(2)/CONTROL; \
|
2006-10-18 00:13:10 +08:00
|
|
|
echo "#!/bin/sh" > $(2)/CONTROL/postinst; \
|
|
|
|
echo "[ -z \"\$$$$$$$$IPKG_INSTROOT\" ] || exit 0" >> $(2)/CONTROL/postinst; \
|
2012-12-20 23:29:37 +08:00
|
|
|
echo ". /lib/functions.sh" >> $(2)/CONTROL/postinst; \
|
2013-06-23 06:09:40 +08:00
|
|
|
echo "insert_modules $$$$$$$$modules" >> $(2)/CONTROL/postinst; \
|
2006-10-18 00:13:10 +08:00
|
|
|
chmod 0755 $(2)/CONTROL/postinst; \
|
|
|
|
fi
|
|
|
|
endef
|
2007-11-30 17:43:08 +08:00
|
|
|
|
2007-12-01 01:22:44 +08:00
|
|
|
ifeq ($(DUMP)$(TARGET_BUILD),)
|
2007-11-30 17:43:08 +08:00
|
|
|
-include $(LINUX_DIR)/.config
|
|
|
|
endif
|
2006-10-18 00:13:10 +08:00
|
|
|
|
2009-03-03 22:54:19 +08:00
|
|
|
define KernelPackage/depends
|
|
|
|
$(STAMP_BUILT): $(LINUX_DIR)/.config
|
|
|
|
define KernelPackage/depends
|
|
|
|
endef
|
|
|
|
endef
|
|
|
|
|
2006-10-18 00:13:10 +08:00
|
|
|
define KernelPackage
|
|
|
|
NAME:=$(1)
|
2006-11-19 04:53:13 +08:00
|
|
|
$(eval $(call Package/Default))
|
2006-10-18 00:13:10 +08:00
|
|
|
$(eval $(call KernelPackage/Defaults))
|
|
|
|
$(eval $(call KernelPackage/$(1)))
|
2009-11-05 06:51:07 +08:00
|
|
|
$(eval $(call KernelPackage/$(1)/$(BOARD)))
|
2006-10-18 00:13:10 +08:00
|
|
|
|
|
|
|
define Package/kmod-$(1)
|
|
|
|
TITLE:=$(TITLE)
|
|
|
|
SECTION:=kernel
|
|
|
|
CATEGORY:=Kernel modules
|
|
|
|
DESCRIPTION:=$(DESCRIPTION)
|
2012-01-08 23:23:11 +08:00
|
|
|
EXTRA_DEPENDS:=kernel (=$(LINUX_VERSION)-$(LINUX_RELEASE)-$(LINUX_VERMAGIC))
|
2009-09-07 01:26:37 +08:00
|
|
|
VERSION:=$(LINUX_VERSION)$(if $(PKG_VERSION),+$(PKG_VERSION))-$(if $(PKG_RELEASE),$(PKG_RELEASE),$(LINUX_RELEASE))
|
2006-10-18 00:13:10 +08:00
|
|
|
$(call KernelPackage/$(1))
|
2009-11-05 05:54:53 +08:00
|
|
|
$(call KernelPackage/$(1)/$(BOARD))
|
2006-10-18 00:13:10 +08:00
|
|
|
endef
|
|
|
|
|
2007-08-25 22:43:15 +08:00
|
|
|
ifdef KernelPackage/$(1)/description
|
|
|
|
define Package/kmod-$(1)/description
|
|
|
|
$(call KernelPackage/$(1)/description)
|
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
2008-05-15 08:57:50 +08:00
|
|
|
ifdef KernelPackage/$(1)/config
|
|
|
|
define Package/kmod-$(1)/config
|
|
|
|
$(call KernelPackage/$(1)/config)
|
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
2009-03-03 22:54:19 +08:00
|
|
|
$(call KernelPackage/depends)
|
2008-09-02 23:50:09 +08:00
|
|
|
|
2011-10-28 21:10:43 +08:00
|
|
|
ifneq ($(if $(filter-out %=y %=n %=m,$(KCONFIG)),$(filter m y,$(foreach c,$(filter-out %=y %=n %=m,$(KCONFIG)),$($(c)))),.),)
|
2014-12-05 19:50:42 +08:00
|
|
|
ifneq ($(if $(SDK),$(filter-out $(LINUX_DIR)/%.ko,$(FILES)),$(strip $(FILES))),)
|
2007-07-21 06:25:14 +08:00
|
|
|
define Package/kmod-$(1)/install
|
2011-10-28 21:10:43 +08:00
|
|
|
@for mod in $$(FILES); do \
|
|
|
|
if [ -e $$$$$$$$mod ]; then \
|
|
|
|
mkdir -p $$(1)/$(MODULES_SUBDIR) ; \
|
|
|
|
$(CP) -L $$$$$$$$mod $$(1)/$(MODULES_SUBDIR)/ ; \
|
2011-11-13 19:45:09 +08:00
|
|
|
elif [ -e "$(LINUX_DIR)/modules.builtin" ]; then \
|
|
|
|
if grep -q "$$$$$$$${mod##$(LINUX_DIR)/}" "$(LINUX_DIR)/modules.builtin"; then \
|
|
|
|
echo "NOTICE: module '$$$$$$$$mod' is built-in."; \
|
|
|
|
else \
|
2013-02-21 19:45:16 +08:00
|
|
|
echo "ERROR: module '$$$$$$$$mod' is missing." >&2; \
|
2011-11-13 19:45:09 +08:00
|
|
|
exit 1; \
|
|
|
|
fi; \
|
2011-10-28 21:10:43 +08:00
|
|
|
else \
|
2013-02-21 19:45:16 +08:00
|
|
|
echo "WARNING: module '$$$$$$$$mod' missing and modules.builtin not available, assuming built-in." >&2; \
|
2011-10-28 21:10:43 +08:00
|
|
|
fi; \
|
|
|
|
done;
|
2007-07-21 06:25:14 +08:00
|
|
|
$(call ModuleAutoLoad,$(1),$$(1),$(AUTOLOAD))
|
|
|
|
$(call KernelPackage/$(1)/install,$$(1))
|
|
|
|
endef
|
|
|
|
endif
|
2007-09-09 07:33:01 +08:00
|
|
|
$(if $(CONFIG_PACKAGE_kmod-$(1)),
|
|
|
|
else
|
2013-07-18 23:41:09 +08:00
|
|
|
compile: $(1)-disabled
|
|
|
|
$(1)-disabled:
|
|
|
|
@echo "WARNING: kmod-$(1) is not available in the kernel config - generating empty package" >&2
|
|
|
|
|
|
|
|
define Package/kmod-$(1)/install
|
|
|
|
true
|
|
|
|
endef
|
2007-09-09 07:33:01 +08:00
|
|
|
)
|
2006-10-18 00:13:10 +08:00
|
|
|
endif
|
|
|
|
$$(eval $$(call BuildPackage,kmod-$(1)))
|
2007-04-18 20:28:38 +08:00
|
|
|
|
2007-04-26 16:06:52 +08:00
|
|
|
$$(IPKG_kmod-$(1)): $$(wildcard $$(FILES))
|
2006-10-18 00:13:10 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define AutoLoad
|
2010-10-18 14:58:11 +08:00
|
|
|
add_module "$(1)" "$(2)" "$(3)";
|
2006-10-18 00:13:10 +08:00
|
|
|
endef
|
|
|
|
|
2013-09-18 05:45:05 +08:00
|
|
|
define AutoProbe
|
|
|
|
probe_module "$(1)" "$(2)";
|
|
|
|
endef
|
|
|
|
|
2011-06-02 02:08:17 +08:00
|
|
|
version_field=$(if $(word $(1),$(2)),$(word $(1),$(2)),0)
|
|
|
|
kernel_version_merge=$$(( ($(call version_field,1,$(1)) << 24) + ($(call version_field,2,$(1)) << 16) + ($(call version_field,3,$(1)) << 8) + $(call version_field,4,$(1)) ))
|
|
|
|
|
2009-03-03 22:55:53 +08:00
|
|
|
ifdef DUMP
|
2011-06-02 02:08:17 +08:00
|
|
|
kernel_version_cmp=
|
2009-03-03 22:55:53 +08:00
|
|
|
else
|
2011-06-02 02:08:17 +08:00
|
|
|
kernel_version_cmp=$(shell [ $(call kernel_version_merge,$(call split_version,$(2))) $(1) $(call kernel_version_merge,$(call split_version,$(3))) ] && echo 1 )
|
2009-03-03 22:55:53 +08:00
|
|
|
endif
|
2008-05-12 04:56:51 +08:00
|
|
|
|
2011-06-02 02:08:17 +08:00
|
|
|
CompareKernelPatchVer=$(if $(call kernel_version_cmp,-$(2),$(1),$(3)),1,0)
|
|
|
|
|
|
|
|
kernel_patchver_gt=$(call kernel_version_cmp,-gt,$(KERNEL_PATCHVER),$(1))
|
|
|
|
kernel_patchver_ge=$(call kernel_version_cmp,-ge,$(KERNEL_PATCHVER),$(1))
|
|
|
|
kernel_patchver_eq=$(call kernel_version_cmp,-eq,$(KERNEL_PATCHVER),$(1))
|
2011-10-28 00:56:22 +08:00
|
|
|
kernel_patchver_le=$(call kernel_version_cmp,-le,$(KERNEL_PATCHVER),$(1))
|
|
|
|
kernel_patchver_lt=$(call kernel_version_cmp,-lt,$(KERNEL_PATCHVER),$(1))
|
2011-06-02 02:08:17 +08:00
|
|
|
|