From: Felix Fietkau Date: Mon, 19 Mar 2012 21:09:47 +0000 (+0000) Subject: kernel: fix stripping of modules with duplicate symbol names X-Git-Tag: v19.07.0-rc1~25120 X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=571bd159a1f45d7ccf79332c8be1ae8b8b8e499d;p=openwrt%2Fstaging%2Fhauke.git kernel: fix stripping of modules with duplicate symbol names SVN-Revision: 31031 --- diff --git a/scripts/strip-kmod.sh b/scripts/strip-kmod.sh index 2a75e39821..13e6b58007 100755 --- a/scripts/strip-kmod.sh +++ b/scripts/strip-kmod.sh @@ -38,9 +38,10 @@ BEGIN { n = 0 } -$3 && $2 ~ /[brtd]/ && $3 !~ /\$LC/ { +$3 && $2 ~ /[brtd]/ && $3 !~ /\$LC/ && !def[$3] { print "--redefine-sym "$3"=_"n; n = n + 1 + def[$3] = 1 } ' > "$MODULE.tmp1"