Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/vax/boot/boot #define was wrong. Some .c should be .s.



details:   https://anonhg.NetBSD.org/src/rev/498b073ca2f9
branches:  trunk
changeset: 467696:498b073ca2f9
user:      ragge <ragge%NetBSD.org@localhost>
date:      Sat Mar 27 09:33:30 1999 +0000

description:
#define was wrong. Some .c should be .s.

diffstat:

 sys/arch/vax/boot/boot/Makefile |  6 +++---
 sys/arch/vax/boot/boot/consio.c |  4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diffs (37 lines):

diff -r e5831bfab6d0 -r 498b073ca2f9 sys/arch/vax/boot/boot/Makefile
--- a/sys/arch/vax/boot/boot/Makefile   Sat Mar 27 09:01:27 1999 +0000
+++ b/sys/arch/vax/boot/boot/Makefile   Sat Mar 27 09:33:30 1999 +0000
@@ -1,12 +1,12 @@
-#      $NetBSD: Makefile,v 1.1 1999/03/06 16:36:04 ragge Exp $
+#      $NetBSD: Makefile,v 1.2 1999/03/27 09:33:30 ragge Exp $
 
 S=     ${.CURDIR}/../../../../
 
 PROG=  boot
 NOMAN= 1
 DEVS=  hp.c ctu.c ra.c tmscp.c mfm.c if_qe.c if_le.c if_ze.c
-SRCS=  srt0.s boot.c devopen.c conf.c autoconf.c netio.c rom.c romread.c \
-       urem.c udiv.c consio.c str.c ${DEVS}
+SRCS=  srt0.s boot.c devopen.c conf.c autoconf.c netio.c rom.c romread.s \
+       urem.s udiv.s consio.c str.s ${DEVS}
 
 CLEANFILES+=${PROG} ${PROG}.mop
 CPPFLAGS+=-DSUPPORT_BOOTPARAMS -DSUPPORT_BOOTP -DSUPPORT_DHCP -D_STANDALONE
diff -r e5831bfab6d0 -r 498b073ca2f9 sys/arch/vax/boot/boot/consio.c
--- a/sys/arch/vax/boot/boot/consio.c   Sat Mar 27 09:01:27 1999 +0000
+++ b/sys/arch/vax/boot/boot/consio.c   Sat Mar 27 09:33:30 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: consio.c,v 1.1 1999/03/06 16:36:05 ragge Exp $ */
+/*     $NetBSD: consio.c,v 1.2 1999/03/27 09:33:31 ragge Exp $ */
 /*
  * Copyright (c) 1994, 1998 Ludd, University of Lule}, Sweden.
  * All rights reserved.
@@ -172,7 +172,7 @@
        case VAX_BTYP_49:
        case VAX_BTYP_410:        
        case VAX_BTYP_420:
-       case VAX_BTYP_440:
+       case VAX_BTYP_48:
                put_fp = rom_putchar;
                get_fp = rom_getchar;
                test_fp = rom_testchar;



Home | Main Index | Thread Index | Old Index