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/biosboot Fix problem from 1.27, and more...



details:   https://anonhg.NetBSD.org/src/rev/0432a2bce0ba
branches:  trunk
changeset: 486126:0432a2bce0ba
user:      jhawk <jhawk%NetBSD.org@localhost>
date:      Sat May 13 19:03:19 2000 +0000

description:
Fix problem from 1.27, and more long-standing in the commented-out
-DSUPPORT_SERIAL options:

Only set -DSUPPORT_SERIAL=CONSDEV_PC for "biosboot" and "biosboot_resetvideo",
but not for biosboot_com0.

diffstat:

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

diffs (33 lines):

diff -r 5cf6651a8d8d -r 0432a2bce0ba sys/arch/i386/stand/biosboot/Makefile
--- a/sys/arch/i386/stand/biosboot/Makefile     Sat May 13 17:57:14 2000 +0000
+++ b/sys/arch/i386/stand/biosboot/Makefile     Sat May 13 19:03:19 2000 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.27 2000/05/13 05:25:20 jhawk Exp $
+#      $NetBSD: Makefile,v 1.28 2000/05/13 19:03:19 jhawk Exp $
 
 S=     ${.CURDIR}/../../../../
 
@@ -17,6 +17,7 @@
 
 CPPFLAGS+= -DCOMPAT_OLDBOOT -DCOMPAT_386BSD_MBRPART
 
+.if (${BASE} == "biosboot")
 # Various serial line configurations
 CPPFLAGS+= -DSUPPORT_SERIAL=CONSDEV_PC -DDIRECT_SERIAL
 #      or
@@ -25,6 +26,7 @@
 #CPPFLAGS+= -DSUPPORT_SERIAL=CONSDEV_AUTO
 #      and maybe
 #CPPFLAGS+= -DDIRECT_SERIAL -DCOMCONS_KEYPRESS -DCONSPEED=57600
+.endif
 
 .if (${BASE} == "biosboot_com0")
 CPPFLAGS+= -DSUPPORT_SERIAL=CONSDEV_COM0 -DDIRECT_SERIAL
@@ -32,6 +34,7 @@
 
 .if (${BASE} == "biosboot_resetvideo")
 CPPFLAGS+= -DRESET_VIDEO
+CPPFLAGS+= -DSUPPORT_SERIAL=CONSDEV_PC -DDIRECT_SERIAL
 .endif
 
 CPPFLAGS+= -DSUPPORT_USTARFS



Home | Main Index | Thread Index | Old Index