diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-02-09 16:24:34 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-02-09 16:24:34 +0000 |
commit | a94d2be696b19383fa65ba53a22c862c73508c2b (patch) | |
tree | 1c4a855e5240489593ea09e9b72a5c378b77ae14 /rules.mk | |
parent | c11f1b9ea6a3c0c68665f1f69f55f6408bfe7c3d (diff) | |
download | upstream-a94d2be696b19383fa65ba53a22c862c73508c2b.tar.gz upstream-a94d2be696b19383fa65ba53a22c862c73508c2b.tar.bz2 upstream-a94d2be696b19383fa65ba53a22c862c73508c2b.zip |
more fixes for rstrip.sh and kernel modules - fixes #1301
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6280 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'rules.mk')
-rw-r--r-- | rules.mk | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -87,8 +87,9 @@ TARGET_CONFIGURE_OPTS:= \ # strip an entire directory RSTRIP:= \ + NM="$(TARGET_CROSS)nm" \ STRIP="$(STRIP)" \ - STRIP_KMOD="$(TARGET_CROSS)strip --strip-unneeded --remove-section=.comment -w -K '__mod*'" \ + STRIP_KMOD="$(TARGET_CROSS)strip --strip-unneeded --remove-section=.comment" \ $(SCRIPT_DIR)/rstrip.sh # where to build (and put) .ipk packages |