X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/d676499260575d8eab370c9a65264597b0559e45..1ad9b6899d4f1a41a321d1f7964e9d0d475483b5:/openwrt/target/linux/rules.mk?ds=sidebyside diff --git a/openwrt/target/linux/rules.mk b/openwrt/target/linux/rules.mk index 75a96b4e6..f7e108658 100644 --- a/openwrt/target/linux/rules.mk +++ b/openwrt/target/linux/rules.mk @@ -1,3 +1,15 @@ +LINUX_KARCH:=$(shell echo $(ARCH) | sed -e 's/i[3-9]86/i386/' \ + -e 's/mipsel/mips/' \ + -e 's/powerpc/ppc/' \ + -e 's/sh[234]/sh/' \ +) + +ifeq ($(KERNEL),2.6) +LINUX_KMOD_SUFFIX=ko +else +LINUX_KMOD_SUFFIX=o +endif + define KMOD_template ifeq ($$(strip $(4)),) KDEPEND_$(1):=m @@ -29,6 +41,15 @@ $$(PKG_$(1)): $(LINUX_DIR)/.modules_done $(SCRIPT_DIR)/make-ipkg-dir.sh $$(I_$(1)) ../control/kmod-$(2).control $(LINUX_VERSION)-$(BOARD)-$(PKG_RELEASE) $(ARCH) echo "Depends: $$(IDEPEND_$(1))" >> $$(I_$(1))/CONTROL/control cp $(3) $$(I_$(1))/lib/modules/$(LINUX_VERSION) - $(IPKG_BUILD) $$(I_$(1)) $(PACKAGE_DIR) +ifneq ($(6),) + mkdir -p $$(I_$(1))/etc/modules.d + for module in $(7); do \ + echo $$$$module >> $$(I_$(1))/etc/modules.d/$(6)-$(2); \ + done +endif + $(8) + $(IPKG_BUILD) $$(I_$(1)) $(PACKAGE_DIR) $(MAKE_TRACE) endef + +