kernel: fix stripping of modules with duplicate symbol names

SVN-Revision: 31031
This commit is contained in:
Felix Fietkau 2012-03-19 21:09:47 +00:00
parent bf96743548
commit 571bd159a1
1 changed files with 2 additions and 1 deletions

View File

@ -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"