Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/i386/stand/boot disable ext2fs support in /boot on ...



details:   https://anonhg.NetBSD.org/src/rev/47a508c0ed09
branches:  trunk
changeset: 759472:47a508c0ed09
user:      mrg <mrg%NetBSD.org@localhost>
date:      Sat Dec 11 08:20:17 2010 +0000

description:
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.

diffstat:

 sys/arch/i386/stand/boot/Makefile.boot |  5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diffs (20 lines):

diff -r f3543abb926d -r 47a508c0ed09 sys/arch/i386/stand/boot/Makefile.boot
--- a/sys/arch/i386/stand/boot/Makefile.boot    Sat Dec 11 04:21:17 2010 +0000
+++ b/sys/arch/i386/stand/boot/Makefile.boot    Sat Dec 11 08:20:17 2010 +0000
@@ -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



Home | Main Index | Thread Index | Old Index