diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-03-26 15:22:14 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-03-26 15:22:14 +0000 |
commit | b978cbd458137029deb0781a3bc646bec31466bc (patch) | |
tree | 4b9a1404ab637c9f7897b2e1a96949f3b7e9d436 /rules.mk | |
parent | 485512673518613a9d6a1f931912d0095d893b61 (diff) | |
download | upstream-b978cbd458137029deb0781a3bc646bec31466bc.tar.gz upstream-b978cbd458137029deb0781a3bc646bec31466bc.tar.bz2 upstream-b978cbd458137029deb0781a3bc646bec31466bc.zip |
strip .gnu.attributes and .reginfo from kernel modules
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26304 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'rules.mk')
-rw-r--r-- | rules.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -211,7 +211,7 @@ else RSTRIP:= \ NM="$(TARGET_CROSS)nm" \ STRIP="$(STRIP)" \ - STRIP_KMOD="$(TARGET_CROSS)strip --strip-unneeded --remove-section=.comment --remove-section=.pdr --remove-section=.mdebug.abi32 --remove-section=.note.gnu.build-id" \ + STRIP_KMOD="$(TARGET_CROSS)strip --strip-unneeded -R .comment -R .pdr -R .mdebug.abi32 -R .note.gnu.build-id -R .gnu.attributes -R .reginfo" \ $(SCRIPT_DIR)/rstrip.sh endif |