vserver 2.0 rc7
[linux-2.6.git] / scripts / patch-kernel
index 3f316b6..f2d47ca 100755 (executable)
 #
 # Added -ac option, use -ac or -ac9 (say) to stop at a particular version
 #       Dave Gilbert <linux@treblig.org>, 29th September 2001.
+#
+# Add support for (use of) EXTRAVERSION (to support 2.6.8.x, e.g.);
+# update usage message;
+# fix some whitespace damage;
+# be smarter about stopping when current version is larger than requested;
+#      Randy Dunlap <rddunlap@osdl.org>, 2004-AUG-18.
+#
+# Add better support for (non-incremental) 2.6.x.y patches;
+# If an ending version number if not specified, the script automatically
+# increments the SUBLEVEL (x in 2.6.x.y) until no more patch files are found;
+# however, EXTRAVERSION (y in 2.6.x.y) is never automatically incremented
+# but must be specified fully.
+#
+# patch-kernel does not normally support reverse patching, but does so when
+# applying EXTRAVERSION (x.y) patches, so that moving from 2.6.11.y to 2.6.11.z
+# is easy and handled by the script (reverse 2.6.11.y and apply 2.6.11.z).
+#      Randy Dunlap <rddunlap@osdl.org>, 2005-APR-08.
+
+PNAME=patch-kernel
 
 # Set directories from arguments, or use defaults.
 sourcedir=${1-/usr/src/linux}
 patchdir=${2-.}
-stopvers=${3-imnotaversion}
+stopvers=${3-default}
 
-if [ "$1" = -h -o "$1" = --help -o ! -r "$sourcedir/Makefile" ]; then
+if [ "$1" == -h -o "$1" == --help -o ! -r "$sourcedir/Makefile" ]; then
 cat << USAGE
-usage: patch-kernel [-h] [ sourcedir [ patchdir [ stopversion ] [ -acxx ] ] ]
-  The source directory defaults to /usr/src/linux, and
-  the patch directory defaults to the current directory.
+usage: $PNAME [-h] [ sourcedir [ patchdir [ stopversion ] [ -acxx ] ] ]
+  source directory defaults to /usr/src/linux,
+  patch directory defaults to the current directory,
+  stopversion defaults to <all in patchdir>.
 USAGE
 exit 1
 fi
@@ -65,6 +85,19 @@ do
        esac;
 done
 
+# ---------------------------------------------------------------------------
+# arg1 is filename
+noFile () {
+       echo "cannot find patch file: ${patch}"
+       exit 1
+}
+
+# ---------------------------------------------------------------------------
+backwards () {
+       echo "$PNAME does not support reverse patching"
+       exit 1
+}
+
 # ---------------------------------------------------------------------------
 # Find a file, first parameter is basename of file
 # it tries many compression mechanisms and sets variables to say how to get it
@@ -77,7 +110,7 @@ findFile () {
                uncomp="gunzip -dc"
   elif [ -r ${filebase}.bz  ]; then
                ext=".bz"
-    name="bzip"
+               name="bzip"
                uncomp="bunzip -dc"
   elif [ -r ${filebase}.bz2 ]; then
                ext=".bz2"
@@ -96,8 +129,8 @@ findFile () {
                name="plaintext"
                uncomp="cat"
   else
-         return 1;
-       fi
+       return 1;
+  fi
 
   return 0;
 }
@@ -126,48 +159,145 @@ applyPatch () {
   return 0;
 }
 
-# set current VERSION, PATCHLEVEL, SUBLEVEL, EXTERVERSION
-eval `sed -n -e 's/^\([A-Z]*\) = \([0-9]*\)$/\1=\2/p' -e 's/^\([A-Z]*\) = \(-[-a-z0-9]*\)$/\1=\2/p' $sourcedir/Makefile`
+# ---------------------------------------------------------------------------
+# arg1 is patch filename
+reversePatch () {
+       echo -n "Reversing $1 (${name}) ... "
+       if $uncomp ${patchdir}/"$1"${ext} | patch -p1 -Rs -N -E -d $sourcedir
+       then
+               echo "done."
+       else
+               echo "failed.  Clean it up."
+               exit 1
+       fi
+       if [ "`find $sourcedir/ '(' -name '*.rej' -o -name '.*.rej' ')' -print`" ]
+       then
+               echo "Aborting.  Reject files found."
+               return 1
+       fi
+       # Remove backup files
+       find $sourcedir/ '(' -name '*.orig' -o -name '.*.orig' ')' -exec rm -f {} \;
+
+       return 0
+}
+
+# set current VERSION, PATCHLEVEL, SUBLEVEL, EXTRAVERSION
+TMPFILE=`mktemp .tmpver.XXXXXX` || { echo "cannot make temp file" ; exit 1; }
+grep -E "^(VERSION|PATCHLEVEL|SUBLEVEL|EXTRAVERSION)" $sourcedir/Makefile > $TMPFILE
+tr -d [:blank:] < $TMPFILE > $TMPFILE.1
+source $TMPFILE.1
+rm -f $TMPFILE*
 if [ -z "$VERSION" -o -z "$PATCHLEVEL" -o -z "$SUBLEVEL" ]
 then
     echo "unable to determine current kernel version" >&2
     exit 1
 fi
 
-echo "Current kernel version is $VERSION.$PATCHLEVEL.$SUBLEVEL${EXTRAVERSION}"
+NAME=`grep ^NAME $sourcedir/Makefile`
+NAME=${NAME##*=}
 
+echo "Current kernel version is $VERSION.$PATCHLEVEL.$SUBLEVEL${EXTRAVERSION} ($NAME)"
+
+# strip EXTRAVERSION to just a number (drop leading '.' and trailing additions)
+EXTRAVER=
 if [ x$EXTRAVERSION != "x" ]
 then
-  echo "I'm sorry but patch-kernel can't work with a kernel source tree that is not a base version"
-       exit 1;
+       if [ ${EXTRAVERSION:0:1} == "." ]; then
+               EXTRAVER=${EXTRAVERSION:1}
+       else
+               EXTRAVER=$EXTRAVERSION
+       fi
+       EXTRAVER=${EXTRAVER%%[[:punct:]]*}
+       #echo "$PNAME: changing EXTRAVERSION from $EXTRAVERSION to $EXTRAVER"
+fi
+
+#echo "stopvers=$stopvers"
+if [ $stopvers != "default" ]; then
+       STOPSUBLEVEL=`echo $stopvers | cut -d. -f3`
+       STOPEXTRA=`echo $stopvers | cut -d. -f4`
+       #echo "#___STOPSUBLEVEL=/$STOPSUBLEVEL/, STOPEXTRA=/$STOPEXTRA/"
+else
+       STOPSUBLEVEL=9999
+       STOPEXTRA=9999
+fi
+
+# This all assumes a 2.6.x[.y] kernel tree.
+# Don't allow backwards/reverse patching.
+if [ $STOPSUBLEVEL -lt $SUBLEVEL ]; then
+       backwards
+fi
+
+if [ x$EXTRAVER != "x" ]; then
+       CURRENTFULLVERSION="$VERSION.$PATCHLEVEL.$SUBLEVEL.$EXTRAVER"
+else
+       CURRENTFULLVERSION="$VERSION.$PATCHLEVEL.$SUBLEVEL"
+fi
+
+if [ x$EXTRAVER != "x" ]; then
+       echo "backing up to: $VERSION.$PATCHLEVEL.$SUBLEVEL"
+       patch="patch-${CURRENTFULLVERSION}"
+       findFile $patchdir/${patch} || noFile ${patch}
+       reversePatch ${patch} || exit 1
 fi
 
-while :
+# now current is 2.6.x, with no EXTRA applied,
+# so update to target SUBLEVEL (2.6.SUBLEVEL)
+# and then to target EXTRAVER (2.6.SUB.EXTRAVER) if requested.
+# If not ending sublevel is specified, it is incremented until
+# no further sublevels are found.
+
+if [ $STOPSUBLEVEL -gt $SUBLEVEL ]; then
+while :                                # incrementing SUBLEVEL (s in v.p.s)
 do
     CURRENTFULLVERSION="$VERSION.$PATCHLEVEL.$SUBLEVEL"
-    if [ $stopvers = $CURRENTFULLVERSION ]
-    then
-        echo "Stoping at $CURRENTFULLVERSION base as requested."
+    EXTRAVER=
+    if [ $stopvers == $CURRENTFULLVERSION ]; then
+        echo "Stopping at $CURRENTFULLVERSION base as requested."
         break
     fi
 
-    SUBLEVEL=`expr $SUBLEVEL + 1`
+    SUBLEVEL=$((SUBLEVEL + 1))
     FULLVERSION="$VERSION.$PATCHLEVEL.$SUBLEVEL"
+    #echo "#___ trying $FULLVERSION ___"
 
-    patch=patch-$FULLVERSION
+    if [ $((SUBLEVEL)) -gt $((STOPSUBLEVEL)) ]; then
+       echo "Stopping since sublevel ($SUBLEVEL) is beyond stop-sublevel ($STOPSUBLEVEL)"
+       exit 1
+    fi
 
-               # See if the file exists and find extension
-               findFile $patchdir/${patch} || break
+    patch=patch-$FULLVERSION
+    # See if the file exists and find extension
+    findFile $patchdir/${patch} || noFile ${patch}
 
     # Apply the patch and check all is OK
     applyPatch $patch || break
 done
+#echo "#___sublevel all done"
+fi
+
+# There is no incremental searching for extraversion...
+if [ "$STOPEXTRA" != "" ]; then
+while :                                # just to allow break
+do
+# apply STOPEXTRA directly (not incrementally) (x in v.p.s.x)
+       FULLVERSION="$VERSION.$PATCHLEVEL.$SUBLEVEL.$STOPEXTRA"
+       #echo "#... trying $FULLVERSION ..."
+       patch=patch-$FULLVERSION
+
+       # See if the file exists and find extension
+       findFile $patchdir/${patch} || noFile ${patch}
+
+       # Apply the patch and check all is OK
+       applyPatch $patch || break
+       #echo "#___extraver all done"
+       break
+done
+fi
 
 if [ x$gotac != x ]; then
   # Out great user wants the -ac patches
        # They could have done -ac (get latest) or -acxx where xx=version they want
-       if [ $gotac == "-ac" ]
-       then
+       if [ $gotac == "-ac" ]; then
          # They want the latest version
                HIGHESTPATCH=0
                for PATCHNAMES in $patchdir/patch-${CURRENTFULLVERSION}-ac*\.*
@@ -176,18 +306,16 @@ if [ x$gotac != x ]; then
                        # Check it is actually a recognised patch type
                        findFile $patchdir/patch-${CURRENTFULLVERSION}-ac${ACVALUE} || break
 
-                 if [ $ACVALUE -gt $HIGHESTPATCH ]
-                       then
+                 if [ $ACVALUE -gt $HIGHESTPATCH ]; then
                          HIGHESTPATCH=$ACVALUE
                  fi
                done
 
-               if [ $HIGHESTPATCH -ne 0 ]
-               then
+               if [ $HIGHESTPATCH -ne 0 ]; then
                        findFile $patchdir/patch-${CURRENTFULLVERSION}-ac${HIGHESTPATCH} || break
                        applyPatch patch-${CURRENTFULLVERSION}-ac${HIGHESTPATCH}
                else
-                 echo "No ac patches found"
+                 echo "No -ac patches found"
                fi
        else
          # They want an exact version
@@ -198,5 +326,3 @@ if [ x$gotac != x ]; then
                applyPatch patch-${CURRENTFULLVERSION}${gotac}
        fi
 fi
-
-