2006-06-27 00:35:46 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2006-11-11 23:11:02 +00:00
|
|
|
|
2007-09-08 19:55:42 +00:00
|
|
|
ifeq ($(__target_inc),)
|
|
|
|
include $(INCLUDE_DIR)/target.mk
|
|
|
|
endif
|
2007-08-26 13:26:02 +00:00
|
|
|
|
2006-06-23 00:49:42 +00:00
|
|
|
ifeq ($(DUMP),1)
|
2006-11-11 23:11:02 +00:00
|
|
|
KERNEL?=<KERNEL>
|
|
|
|
BOARD?=<BOARD>
|
|
|
|
LINUX_VERSION?=<LINUX_VERSION>
|
2006-06-23 00:49:42 +00:00
|
|
|
else
|
2007-07-31 00:52:27 +00:00
|
|
|
export GCC_HONOUR_COPTS=s
|
|
|
|
|
2010-07-12 16:01:13 +00:00
|
|
|
LINUX_KMOD_SUFFIX=ko
|
|
|
|
|
2006-08-16 00:35:30 +00:00
|
|
|
ifneq (,$(findstring uml,$(BOARD)))
|
2007-10-23 06:23:23 +00:00
|
|
|
KERNEL_CC?=$(HOSTCC)
|
|
|
|
KERNEL_CROSS?=
|
2006-08-16 00:35:30 +00:00
|
|
|
else
|
2007-10-23 06:23:23 +00:00
|
|
|
KERNEL_CC?=$(TARGET_CC)
|
|
|
|
KERNEL_CROSS?=$(TARGET_CROSS)
|
2006-08-16 00:35:30 +00:00
|
|
|
endif
|
2006-07-20 21:06:47 +00:00
|
|
|
|
2010-03-29 03:07:54 +00: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
|
2007-09-08 19:55:42 +00:00
|
|
|
KERNEL_BUILD_DIR ?= $(BUILD_DIR_BASE)/linux-$(BOARD)$(if $(SUBTARGET),_$(SUBTARGET))$(if $(BUILD_SUFFIX),_$(BUILD_SUFFIX))
|
2007-08-07 00:04:25 +00:00
|
|
|
LINUX_DIR ?= $(KERNEL_BUILD_DIR)/linux-$(LINUX_VERSION)
|
2006-06-21 02:16:37 +00:00
|
|
|
|
2006-08-16 00:35:30 +00:00
|
|
|
MODULES_SUBDIR:=lib/modules/$(LINUX_VERSION)
|
|
|
|
TARGET_MODULES_DIR := $(LINUX_TARGET_DIR)/$(MODULES_SUBDIR)
|
2006-01-10 19:43:00 +00:00
|
|
|
|
2006-08-16 00:35:30 +00:00
|
|
|
LINUX_KERNEL:=$(KERNEL_BUILD_DIR)/vmlinux
|
2006-11-11 23:11:02 +00:00
|
|
|
|
|
|
|
LINUX_SOURCE:=linux-$(LINUX_VERSION).tar.bz2
|
2007-06-16 01:56:04 +00:00
|
|
|
TESTING:=$(if $(findstring -rc,$(LINUX_VERSION)),/testing,)
|
2009-12-14 13:54:03 +00:00
|
|
|
ifeq ($(call qstrip,$(CONFIG_EXTERNAL_KERNEL_TREE)),)
|
|
|
|
LINUX_SITE:=@KERNEL/linux/kernel/v$(KERNEL)$(TESTING)
|
|
|
|
endif
|
2006-11-11 23:11:02 +00:00
|
|
|
|
2007-09-10 04:21:21 +00:00
|
|
|
ifneq ($(TARGET_BUILD),1)
|
|
|
|
PKG_BUILD_DIR ?= $(KERNEL_BUILD_DIR)/$(PKG_NAME)$(if $(PKG_VERSION),-$(PKG_VERSION))
|
|
|
|
endif
|
2005-11-01 17:30:26 +00:00
|
|
|
endif
|
2007-09-08 19:55:42 +00:00
|
|
|
|
|
|
|
ifneq (,$(findstring uml,$(BOARD)))
|
2009-03-03 14:55:53 +00:00
|
|
|
LINUX_KARCH=um
|
2007-09-08 19:55:42 +00:00
|
|
|
else
|
2007-10-23 06:23:12 +00:00
|
|
|
ifeq (,$(LINUX_KARCH))
|
2009-04-18 17:03:55 +00:00
|
|
|
LINUX_KARCH=$(strip $(subst i386,x86,$(subst armeb,arm,$(subst mipsel,mips,$(subst mips64,mips,$(subst mips64el,mips,$(subst sh2,sh,$(subst sh3,sh,$(subst sh4,sh,$(ARCH))))))))))
|
2007-10-23 06:23:12 +00:00
|
|
|
endif
|
2007-09-08 19:55:42 +00:00
|
|
|
endif
|
2005-08-15 10:43:09 +00:00
|
|
|
|
2006-10-17 16:13:10 +00:00
|
|
|
|
|
|
|
define KernelPackage/Defaults
|
|
|
|
FILES:=
|
|
|
|
AUTOLOAD:=
|
|
|
|
endef
|
|
|
|
|
|
|
|
define ModuleAutoLoad
|
2010-08-19 12:49:37 +00:00
|
|
|
$(SH_FUNC) \
|
2006-10-17 16:13:10 +00:00
|
|
|
export modules=; \
|
|
|
|
add_module() { \
|
|
|
|
mkdir -p $(2)/etc/modules.d; \
|
2006-10-17 21:43:41 +00:00
|
|
|
( \
|
2010-02-26 22:45:54 +00:00
|
|
|
[ "$$$$$$$$3" = "1" ] && { \
|
|
|
|
echo '# May be required for rootfs' ; \
|
|
|
|
} ; \
|
2006-10-17 21:43:41 +00:00
|
|
|
for mod in $$$$$$$$2; do \
|
|
|
|
getvar mod; \
|
|
|
|
done \
|
|
|
|
) > $(2)/etc/modules.d/$$$$$$$$1-$(1); \
|
2006-10-17 16:13:10 +00:00
|
|
|
modules="$$$$$$$${modules:+$$$$$$$$modules }$$$$$$$$1-$(1)"; \
|
|
|
|
}; \
|
|
|
|
$(3) \
|
|
|
|
if [ -n "$$$$$$$$modules" ]; then \
|
|
|
|
mkdir -p $(2)/etc/modules.d; \
|
2009-08-17 10:14:25 +00:00
|
|
|
mkdir -p $(2)/CONTROL; \
|
2006-10-17 16:13:10 +00:00
|
|
|
echo "#!/bin/sh" > $(2)/CONTROL/postinst; \
|
|
|
|
echo "[ -z \"\$$$$$$$$IPKG_INSTROOT\" ] || exit 0" >> $(2)/CONTROL/postinst; \
|
|
|
|
echo ". /etc/functions.sh" >> $(2)/CONTROL/postinst; \
|
|
|
|
echo "load_modules $$$$$$$$modules" >> $(2)/CONTROL/postinst; \
|
|
|
|
chmod 0755 $(2)/CONTROL/postinst; \
|
|
|
|
fi
|
|
|
|
endef
|
2007-11-30 09:43:08 +00:00
|
|
|
|
2007-11-30 17:22:44 +00:00
|
|
|
ifeq ($(DUMP)$(TARGET_BUILD),)
|
2007-11-30 09:43:08 +00:00
|
|
|
-include $(LINUX_DIR)/.config
|
|
|
|
endif
|
2006-10-17 16:13:10 +00:00
|
|
|
|
2009-03-03 14:54:19 +00:00
|
|
|
define KernelPackage/depends
|
|
|
|
$(STAMP_BUILT): $(LINUX_DIR)/.config
|
|
|
|
define KernelPackage/depends
|
|
|
|
endef
|
|
|
|
endef
|
|
|
|
|
2006-10-17 16:13:10 +00:00
|
|
|
define KernelPackage
|
|
|
|
NAME:=$(1)
|
2006-11-18 20:53:13 +00:00
|
|
|
$(eval $(call Package/Default))
|
2006-10-17 16:13:10 +00:00
|
|
|
$(eval $(call KernelPackage/Defaults))
|
|
|
|
$(eval $(call KernelPackage/$(1)))
|
|
|
|
$(eval $(call KernelPackage/$(1)/$(KERNEL)))
|
2009-11-04 22:51:07 +00:00
|
|
|
$(eval $(call KernelPackage/$(1)/$(BOARD)))
|
2006-10-17 16:13:10 +00:00
|
|
|
|
|
|
|
define Package/kmod-$(1)
|
|
|
|
TITLE:=$(TITLE)
|
|
|
|
SECTION:=kernel
|
|
|
|
CATEGORY:=Kernel modules
|
|
|
|
DESCRIPTION:=$(DESCRIPTION)
|
2009-09-06 17:26:37 +00:00
|
|
|
EXTRA_DEPENDS:=kernel (=$(LINUX_VERSION)-$(LINUX_RELEASE))
|
|
|
|
VERSION:=$(LINUX_VERSION)$(if $(PKG_VERSION),+$(PKG_VERSION))-$(if $(PKG_RELEASE),$(PKG_RELEASE),$(LINUX_RELEASE))
|
2006-10-17 16:13:10 +00:00
|
|
|
$(call KernelPackage/$(1))
|
|
|
|
$(call KernelPackage/$(1)/$(KERNEL))
|
2009-11-04 21:54:53 +00:00
|
|
|
$(call KernelPackage/$(1)/$(BOARD))
|
2006-10-17 16:13:10 +00:00
|
|
|
endef
|
|
|
|
|
2007-08-25 14:43:15 +00:00
|
|
|
ifdef KernelPackage/$(1)/description
|
|
|
|
define Package/kmod-$(1)/description
|
|
|
|
$(call KernelPackage/$(1)/description)
|
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
2008-05-15 00:57:50 +00:00
|
|
|
ifdef KernelPackage/$(1)/config
|
|
|
|
define Package/kmod-$(1)/config
|
|
|
|
$(call KernelPackage/$(1)/config)
|
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
2009-03-03 14:54:19 +00:00
|
|
|
$(call KernelPackage/depends)
|
2008-09-02 15:50:09 +00:00
|
|
|
|
2008-08-27 21:34:01 +00:00
|
|
|
ifneq ($(if $(filter-out %=y %=n %=m,$(KCONFIG)),$(filter m,$(foreach c,$(filter-out %=y %=n %=m,$(KCONFIG)),$($(c)))),.),)
|
2007-07-20 22:25:14 +00:00
|
|
|
ifneq ($(strip $(FILES)),)
|
|
|
|
define Package/kmod-$(1)/install
|
|
|
|
mkdir -p $$(1)/lib/modules/$(LINUX_VERSION)
|
|
|
|
$(CP) -L $$(FILES) $$(1)/lib/modules/$(LINUX_VERSION)/
|
|
|
|
$(call ModuleAutoLoad,$(1),$$(1),$(AUTOLOAD))
|
|
|
|
$(call KernelPackage/$(1)/install,$$(1))
|
|
|
|
endef
|
|
|
|
endif
|
2007-09-08 23:33:01 +00:00
|
|
|
$(if $(CONFIG_PACKAGE_kmod-$(1)),
|
|
|
|
else
|
|
|
|
compile: kmod-$(1)-unavailable
|
|
|
|
kmod-$(1)-unavailable:
|
|
|
|
@echo "WARNING: kmod-$(1) is not available in the kernel config"
|
|
|
|
)
|
2006-10-17 16:13:10 +00:00
|
|
|
endif
|
|
|
|
$$(eval $$(call BuildPackage,kmod-$(1)))
|
2007-04-18 12:28:38 +00:00
|
|
|
|
2007-04-26 08:06:52 +00:00
|
|
|
$$(IPKG_kmod-$(1)): $$(wildcard $$(FILES))
|
2006-10-17 16:13:10 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define AutoLoad
|
2010-02-26 22:45:54 +00:00
|
|
|
add_module $(1) "$(2)" $(3);
|
2006-10-17 16:13:10 +00:00
|
|
|
endef
|
|
|
|
|
2009-03-03 14:55:53 +00:00
|
|
|
ifdef DUMP
|
|
|
|
CompareKernelPatchVer=0
|
|
|
|
else
|
|
|
|
define CompareKernelPatchVer
|
|
|
|
$(shell [ $$(echo $(1) | tr . 0) -$(2) $$(echo $(3) | tr . 0) ] && echo 1 || echo 0)
|
|
|
|
endef
|
|
|
|
endif
|
2008-05-11 20:56:51 +00:00
|
|
|
|