diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-03-19 21:09:47 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-03-19 21:09:47 +0000 |
commit | 571bd159a1f45d7ccf79332c8be1ae8b8b8e499d (patch) | |
tree | b43c3b4d9e5c85c6e4340a6e792580197defac64 /scripts | |
parent | bf9674354848a5e09c220035431ca39a44f0ecfc (diff) | |
download | mtk-20170518-571bd159a1f45d7ccf79332c8be1ae8b8b8e499d.zip mtk-20170518-571bd159a1f45d7ccf79332c8be1ae8b8b8e499d.tar.gz mtk-20170518-571bd159a1f45d7ccf79332c8be1ae8b8b8e499d.tar.bz2 |
kernel: fix stripping of modules with duplicate symbol names
SVN-Revision: 31031
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/strip-kmod.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/strip-kmod.sh b/scripts/strip-kmod.sh index 2a75e39..13e6b58 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" |