Whamcloud - gitweb
Branch: b1_4
authoradilger <adilger>
Wed, 23 Mar 2005 18:55:49 +0000 (18:55 +0000)
committeradilger <adilger>
Wed, 23 Mar 2005 18:55:49 +0000 (18:55 +0000)
Patch series verification scripts moved to build.

lustre/scripts/clearpatches.sh [deleted file]
lustre/scripts/confirmpatches.sh [deleted file]

diff --git a/lustre/scripts/clearpatches.sh b/lustre/scripts/clearpatches.sh
deleted file mode 100644 (file)
index ee36ef8..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-SERIESPATH=./series
-PATCHESPATH=./patches
-NOUSEPATH=./nousepatches
-
-mkdir -p $NOUSEPATH
-for PATCH in `ls $PATCHESPATH` ; do
-       echo $PATCH
-       if ! grep -r $PATCH $SERIESPATH ; then
-               echo "$PATCH was not in use !"
-               mv $PATCHESPATH/$PATCH $NOUSEPATH
-       fi
-done
diff --git a/lustre/scripts/confirmpatches.sh b/lustre/scripts/confirmpatches.sh
deleted file mode 100644 (file)
index 31e5d72..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-SERIESPATH=./series
-PATCHESPATH=./patches
-for SERIES in `ls $SERIESPATH` ; do
-       #echo $SERIES
-       for PATCH in `cat $SERIESPATH/$SERIES`; do
-               #echo $PATCH
-               if [ ! `find $PATCHESPATH -name $PATCH` ]; then
-                       echo "$SERIESPATH/$SERIES: patch $PATCH was not found !"
-               fi
-       done
-done