projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix 2.4 config for pf-ring
[openwrt.git]
/
target
/
linux
/
rules.mk
diff --git
a/target/linux/rules.mk
b/target/linux/rules.mk
index
9446c34
..
2c0fa09
100644
(file)
--- a/
target/linux/rules.mk
+++ b/
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
define KMOD_template
ifeq ($$(strip $(4)),)
KDEPEND_$(1):=m
@@
-6,9
+13,9
@@
KDEPEND_$(1):=$($(4))
endif
ifeq ($$(strip $(5)),)
endif
ifeq ($$(strip $(5)),)
-IDEPEND_$(1):=kernel
($(LINUX_VERSION)-$(BOARD)-
$(PKG_RELEASE))
+IDEPEND_$(1):=kernel
-$(LINUX_VERSION)-$(BOARD) (
$(PKG_RELEASE))
else
else
-IDEPEND_$(1):=kernel
($(LINUX_VERSION)-$(BOARD)-
$(PKG_RELEASE)), $(5)
+IDEPEND_$(1):=kernel
-$(LINUX_VERSION)-$(BOARD) (
$(PKG_RELEASE)), $(5)
endif
PKG_$(1) := $(PACKAGE_DIR)/kmod-$(2)_$(LINUX_VERSION)-$(BOARD)-$(PKG_RELEASE)_$(ARCH).ipk
endif
PKG_$(1) := $(PACKAGE_DIR)/kmod-$(2)_$(LINUX_VERSION)-$(BOARD)-$(PKG_RELEASE)_$(ARCH).ipk
@@
-29,6
+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)
$(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
endef
+
+
This page took
0.019631 seconds
and
4
git commands to generate.