Module Name:    src
Committed By:   mrg
Date:           Sat Dec 11 08:20:17 UTC 2010

Modified Files:
        src/sys/arch/i386/stand/boot: Makefile.boot

Log Message:
disable ext2fs support in /boot on amd64 for now.  it breaks cd booting.

XXX: i don't know why, or plan to figure it out, but at least now amd64
XXX: isos boot again.


To generate a diff of this commit:
cvs rdiff -u -r1.45 -r1.46 src/sys/arch/i386/stand/boot/Makefile.boot

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/i386/stand/boot/Makefile.boot
diff -u src/sys/arch/i386/stand/boot/Makefile.boot:1.45 src/sys/arch/i386/stand/boot/Makefile.boot:1.46
--- src/sys/arch/i386/stand/boot/Makefile.boot:1.45	Sat Sep 11 12:43:54 2010
+++ src/sys/arch/i386/stand/boot/Makefile.boot	Sat Dec 11 08:20:17 2010
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.boot,v 1.45 2010/09/11 12:43:54 tsutsui Exp $
+# $NetBSD: Makefile.boot,v 1.46 2010/12/11 08:20:17 mrg Exp $
 
 S=	${.CURDIR}/../../../../..
 
@@ -72,7 +72,10 @@
 CPPFLAGS+= -DSUPPORT_CD9660
 CPPFLAGS+= -DSUPPORT_USTARFS
 CPPFLAGS+= -DSUPPORT_DOSFS
+# XXX this bloats(?) /boot and it can't boot from cd anymore
+.if ${MACHINE_ARCH} != "x86_64"
 CPPFLAGS+= -DSUPPORT_EXT2FS
+.endif
 CPPFLAGS+= -DPASS_BIOSGEOM
 CPPFLAGS+= -DPASS_MEMMAP
 #CPPFLAGS+= -DBOOTPASSWD

Reply via email to