From: adilger Date: Wed, 23 Mar 2005 18:55:49 +0000 (+0000) Subject: Branch: b1_4 X-Git-Tag: v1_8_0_110~486^7~119 X-Git-Url: https://git.whamcloud.com/gitweb?a=commitdiff_plain;h=032ca1de19656af352035f520e198fd183f17946;p=fs%2Flustre-release.git Branch: b1_4 Patch series verification scripts moved to build. --- diff --git a/lustre/scripts/clearpatches.sh b/lustre/scripts/clearpatches.sh deleted file mode 100644 index ee36ef8..0000000 --- a/lustre/scripts/clearpatches.sh +++ /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 index 31e5d72..0000000 --- a/lustre/scripts/confirmpatches.sh +++ /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