From: Heiko Z. <smi...@us...> - 2004-06-28 23:17:13
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1192/scripts Modified Files: patch-o-matic Log Message: - a couple software updates - write netfilter patches into logfile Index: patch-o-matic =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/patch-o-matic,v retrieving revision 1.22 retrieving revision 1.23 diff -u -d -r1.22 -r1.23 --- patch-o-matic 12 Apr 2004 21:27:15 -0000 1.22 +++ patch-o-matic 28 Jun 2004 23:17:02 -0000 1.23 @@ -64,19 +64,20 @@ # echo "$0: Can't create temp file, exiting..." # exit 1 #fi - TMPFILE=/tmp/${0##*/}.$$ + #TMPFILE=/tmp/${0##*/}.$$ # now apply all patches at once and take care # to exclude troublesome patches - ./runme --batch $EXCLUDE $PATCHES >$TMPFILE 2>&1 + ./runme --batch $EXCLUDE $PATCHES + # >$TMPFILE 2>&1 - if ! grep -q "Kernel is now ready for compilation." $TMPFILE; then - echo "Patch-O-Matic failed applying the patches." 1>&2 - echo "See $TMPFILE for details" 1>&2 - exit 1 - fi + #if ! grep -q "Kernel is now ready for compilation." $TMPFILE; then + # echo "Patch-O-Matic failed applying the patches." 1>&2 + # echo "See $TMPFILE for details" 1>&2 + # exit 1 + #fi - cat $TMPFILE; rm -f $TMPFILE + #cat $TMPFILE; rm -f $TMPFILE for CFG in $( grep tristate $KERNELDIR/net/ipv4/netfilter/Config.in | cut -d "'" -f 3 | cut -d " " -f 2 ); do set_kernel_option $CFG m |