From: <smi...@us...> - 2004-01-17 13:42:14
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv7201/scripts Modified Files: ebtables grsecurity Log Message: fixed small typo don't try to apply grsec patch when already done Index: ebtables =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/ebtables,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- ebtables 16 Jan 2004 01:47:55 -0000 1.6 +++ ebtables 17 Jan 2004 13:42:11 -0000 1.7 @@ -39,7 +39,7 @@ set_kernel_option $CFG y done - set_kernel_option CONFIG_IP_NF_MATCH_PHYSDEV=m + set_kernel_option CONFIG_IP_NF_MATCH_PHYSDEV m fi make MANDIR=/usr/share/man $PMAKE all|| exit 1 strip_debug Index: grsecurity =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/grsecurity,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- grsecurity 11 Jan 2004 14:43:04 -0000 1.14 +++ grsecurity 17 Jan 2004 13:42:11 -0000 1.15 @@ -29,7 +29,10 @@ build ) if [ "$CONFIG_GRSECURITY" = "y" ] ; then cd $KERNELDIR - bzcat $DL_DIR/src/grsecurity*.patch.bz2 | patch -p1 || exit 1 + if [ ! -f devil-linux-grsec-kernel-patches.done ]; then + touch devil-linux-grsec-kernel-patches.done + bzcat $DL_DIR/src/grsecurity*.patch.bz2 | patch -p1 || exit 1 + fi # add configuration to kernel config cat $MYDIR/config/config_grsecurity >> .config # start oldconfig, in case there are new options |