CVS: moonbase/kernel/linux-stable BUILD,1.9,1.10
elaine at lunar-linux.org
elaine at lunar-linux.org
Wed Oct 15 22:27:21 GMT 2003
Update of /var/cvs/lunar/moonbase/kernel/linux-stable
In directory dbguin.lunar-linux.org:/tmp/cvs-serv25922
Modified Files:
BUILD
Log Message:
reverting, prior ocmmit does not parse
Index: BUILD
===================================================================
RCS file: /var/cvs/lunar/moonbase/kernel/linux-stable/BUILD,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- BUILD 15 Oct 2003 18:15:33 -0000 1.9
+++ BUILD 15 Oct 2003 22:27:18 -0000 1.10
@@ -1,34 +1,26 @@
cd /usr/src/linux
while
- case $CONFIG_KERNEL in
- y|Y)
-
- case $CONFIG_METHOD
- xconfig )
- if [ "$DISPLAY" ]; then
- make xconfig || make menuconfig || make config
- else
- make menuconfig || make config
- fi ;;
-
- menuconfig )
- make menuconfig || make config ;;
-
- config )
- make config ;;
- esac
+ case $CONFIG_KERNEL in
+ y|Y) if [ "$CONFIG_METHOD" == "xconfig" ]
+ then
+ if [ "$DISPLAY" ]
+ then
+ make xconfig
+ else
+ message xconfig could find display falling back to menuconfig
+ make menuconfig
+ fi
+ else
+ make $CONFIG_METHOD
+ fi
- if query "Repeat $CONFIG_METHOD? " n ; then
- CONFIG_KERNEL=y
- else
- CONFIG_KERNEL=n
- fi
- ;;
-
- *)
- false ;;
- esac
+ if query "Repeat $CONFIG_METHOD? " n
+ then CONFIG_KERNEL=y
+ else CONFIG_KERNEL=n
+ fi ;;
+ *) false ;;
+ esac
do
true
done
More information about the Lunar-commits
mailing list