From 1f586cdfb6600446755db1483a71c8fea976eaea Mon Sep 17 00:00:00 2001
From: Felix Fietkau <nbd@openwrt.org>
Date: Mon, 19 Mar 2012 21:09:47 +0000
Subject: [PATCH] kernel: fix stripping of modules with duplicate symbol names

SVN-Revision: 31031
---
 scripts/strip-kmod.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/scripts/strip-kmod.sh b/scripts/strip-kmod.sh
index 2a75e39821..13e6b58007 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"
 
-- 
2.30.2