Update of /cvsroot/devil-linux/build/scripts
In directory sc8-pr-cvs1:/tmp/cvs-serv17145/build/scripts
Modified Files:
super-freeswan
Log Message:
fixed typo and set missing kernel options
Index: super-freeswan
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/super-freeswan,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- super-freeswan 17 Jan 2004 01:15:39 -0000 1.5
+++ super-freeswan 17 Jan 2004 14:46:04 -0000 1.6
@@ -39,14 +39,17 @@
set_kernel_option $CFG m
done
for CFG in $( grep bool $DIR | cut -d "'" -f 3 | cut -d " " -f 2 ); do
- if [ ! "$CFG" = "CONFIG_IPSEC_DEBUG" ]
- && [ ! "$CFG" = "CONFIG_IPSEC_ALG_NON_LIBRE" ]
+ if [ ! "$CFG" = "CONFIG_IPSEC_DEBUG" ] \
+ && [ ! "$CFG" = "CONFIG_IPSEC_ALG_NON_LIBRE" ] \
&& [ ! "$CFG" = "CONFIG_IPSEC_ALG_CRYPTOAPI" ]; then
set_kernel_option $CFG y
fi
done
done
set_kernel_option CONFIG_IPSEC m
+ set_kernel_option CONFIG_IPSEC_DEBUG n
+ set_kernel_option CONFIG_IPSEC_ALG_NON_LIBRE n
+ set_kernel_option CONFIG_IPSEC_ALG_CRYPTOAPI n
replace_str Makefile.inc /usr/local /usr
replace_str Makefile.inc /usr/src/linux $KERNELDIR
|