1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-28 22:23:16 +03:00

kernel: fix stripping of modules with duplicate symbol names

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31031 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2012-03-19 21:09:47 +00:00
parent b0439c1a11
commit 614c6eee52

View File

@ -38,9 +38,10 @@ BEGIN {
n = 0 n = 0
} }
$3 && $2 ~ /[brtd]/ && $3 !~ /\$LC/ { $3 && $2 ~ /[brtd]/ && $3 !~ /\$LC/ && !def[$3] {
print "--redefine-sym "$3"=_"n; print "--redefine-sym "$3"=_"n;
n = n + 1 n = n + 1
def[$3] = 1
} }
' > "$MODULE.tmp1" ' > "$MODULE.tmp1"