Update of /cvsroot/devil-linux/build/scripts
In directory vz-cvs-3.sog:/tmp/cvs-serv18421
Modified Files:
grub
Log Message:
disabled grub for 64 bit until the problem is resolved
Index: grub
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/grub,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- grub 2 Nov 2011 19:07:53 -0000 1.21
+++ grub 2 Nov 2011 20:47:32 -0000 1.22
@@ -16,6 +16,13 @@
MYNAME="GRUB"
+# currently doesn't work on 64 bit
+# no clue why, things should be fine
+# even new version doesn't work
+if [ "$CONFIG_CPU" = "x86_64" ]; then
+ exit 0
+fi
+
case $1 in
build )
patch_from_dir ../grub-patches
@@ -23,9 +30,7 @@
if [ "$CONFIG_GCC_HARDENED" = "y" ]; then
export CC="gcc -fno-stack-protector -fno-pic -fno-pie -nopie"
fi
- CFLAGS="-static ${CFLAGS}"
- export CFLAGS
- #autoreconf --install --force
+ export CFLAGS="-static ${CFLAGS}"
aclocal
automake
autoconf
|