X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/cdea47b22effe86885cb0517fe5bdf02d95d1a76..7a6a5212d883528bead7cc414bce96bec462b3a0:/openwrt/target/linux/rules.mk diff --git a/openwrt/target/linux/rules.mk b/openwrt/target/linux/rules.mk index 82ac46d58..606efb6d9 100644 --- a/openwrt/target/linux/rules.mk +++ b/openwrt/target/linux/rules.mk @@ -1,3 +1,10 @@ +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/' \ +) + + define KMOD_template ifeq ($$(strip $(4)),) KDEPEND_$(1):=m @@ -29,7 +36,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) - $(6) +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) endef + +