summaryrefslogtreecommitdiff
path: root/rules.mk
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2012-02-20 17:38:26 +0000
committerFelix Fietkau <nbd@openwrt.org>2012-02-20 17:38:26 +0000
commitc2590fe9309910c759a9b8a5dbcd7facffe8d982 (patch)
tree3881176f1a6717e8a9fe10f2fea2b9335dd004ca /rules.mk
parentc9188104140685f3d13c789f2823dbad5b3ac0f1 (diff)
downloadmtk-20170518-c2590fe9309910c759a9b8a5dbcd7facffe8d982.zip
mtk-20170518-c2590fe9309910c759a9b8a5dbcd7facffe8d982.tar.gz
mtk-20170518-c2590fe9309910c759a9b8a5dbcd7facffe8d982.tar.bz2
strip kernel modules more aggressively: make all global symbols local, rename all symbols in the symbol table to make them compress better
SVN-Revision: 30662
Diffstat (limited to 'rules.mk')
-rw-r--r--rules.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/rules.mk b/rules.mk
index 474c0e2..79a2a9f 100644
--- a/rules.mk
+++ b/rules.mk
@@ -219,9 +219,10 @@ else
endif
endif
RSTRIP:= \
+ export CROSS="$(TARGET_CROSS)"; \
NM="$(TARGET_CROSS)nm" \
STRIP="$(STRIP)" \
- STRIP_KMOD="$(TARGET_CROSS)strip --strip-unneeded -R .comment -R .pdr -R .mdebug.abi32 -R .note.gnu.build-id -R .gnu.attributes -R .reginfo -x" \
+ STRIP_KMOD="$(SCRIPT_DIR)/strip-kmod.sh" \
$(SCRIPT_DIR)/rstrip.sh
endif