Ver Fonte

kernel: fix stripping of modules with duplicate symbol names

SVN-Revision: 31031
Felix Fietkau há 13 anos atrás
pai
commit
571bd159a1
1 ficheiros alterados com 2 adições e 1 exclusões
  1. 2 1
      scripts/strip-kmod.sh

+ 2 - 1
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"