scripts: remove unused map files merger
authorThomas Monjalon <thomas.monjalon@6wind.com>
Thu, 19 May 2016 18:00:04 +0000 (20:00 +0200)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 24 May 2016 14:17:02 +0000 (16:17 +0200)
This script was forgotten when dropping the combined library.

Fixes: 948fd64befc3 ("mk: replace the combined library with a linker script")

Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
Acked-by: Panu Matilainen <pmatilai@redhat.com>
MAINTAINERS
scripts/merge-maps.sh [deleted file]

index 9dd0738..3e8558f 100644 (file)
@@ -56,7 +56,6 @@ F: scripts/auto-config-h.sh
 F: scripts/depdirs-rule.sh
 F: scripts/gen-build-mk.sh
 F: scripts/gen-config-h.sh
-F: scripts/merge-maps.sh
 F: scripts/relpath.sh
 F: doc/build-sdk-quick.txt
 F: doc/guides/prog_guide/build_app.rst
diff --git a/scripts/merge-maps.sh b/scripts/merge-maps.sh
deleted file mode 100755 (executable)
index edc88de..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/sh
-
-FILES=$(find "$RTE_SDK"/lib "$RTE_SDK"/drivers -name "*_version.map")
-SYMBOLS=$(grep -h "{" $FILES | sort -u | sed 's/{//')
-
-first=0
-prev_sym="none"
-
-for s in $SYMBOLS; do
-       echo "$s {"
-       echo "    global:"
-       echo ""
-       for f in $FILES; do
-               sed -n "/$s {/,/}/p" "$f" | sed '/^$/d' | grep -v global | grep -v local | sed -e '1d' -e '$d'
-       done | sort -u
-       echo ""
-       if [ $first -eq 0 ]; then
-               first=1;
-               echo "    local: *;";
-       fi
-       if [ "$prev_sym" = "none" ]; then
-               echo "};";
-               prev_sym=$s;
-       else
-               echo "} $prev_sym;";
-               prev_sym=$s;
-       fi
-       echo ""
-done