mirror of
https://github.com/immortalwrt/immortalwrt.git
synced 2025-08-11 06:11:53 +08:00
kernel: fix stripping of modules with duplicate symbol names
SVN-Revision: 31031
This commit is contained in:
@ -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"
|
||||
|
||||
|
Reference in New Issue
Block a user