CVS commit: src/sys/arch/mvme68k/stand/sboot

2014-11-21 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Nov 21 20:13:19 UTC 2014

Modified Files:
src/sys/arch/mvme68k/stand/sboot: Makefile

Log Message:
Add libkern for umoddi3 needed for correct leap yar computation in is_leap_year.


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/sys/arch/mvme68k/stand/sboot/Makefile

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/mvme68k/stand/sboot/Makefile
diff -u src/sys/arch/mvme68k/stand/sboot/Makefile:1.14 src/sys/arch/mvme68k/stand/sboot/Makefile:1.15
--- src/sys/arch/mvme68k/stand/sboot/Makefile:1.14	Fri Jan 21 10:59:08 2011
+++ src/sys/arch/mvme68k/stand/sboot/Makefile	Fri Nov 21 15:13:18 2014
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.14 2011/01/21 15:59:08 joerg Exp $
+#	$NetBSD: Makefile,v 1.15 2014/11/21 20:13:18 christos Exp $
 
 #
 # sboot would like a newer GNU ld because it can generate S-Records.
@@ -13,7 +13,7 @@ SRCS=		start.s clock.c console.c etherfu
 		oc_cksum.s sboot.c
 SRTOBJ=
 PROG=		sboot
-LIBS=		${LIBSA}
+LIBS=		${LIBSA} ${LIBKERN}
 DPADD=		${LIBS}
 CLEANFILES+=	sboot.srec
 



CVS commit: src/sys/arch/mvme68k/stand/sboot

2011-09-29 Thread Havard Eidnes
Module Name:src
Committed By:   he
Date:   Thu Sep 29 09:18:17 UTC 2011

Modified Files:
src/sys/arch/mvme68k/stand/sboot: etherfun.c

Log Message:
Drop the "static" from the HEXDIGITS declaration, now that there's an
extern definition in sys/systm.h, to allow this to continue to build.


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/sys/arch/mvme68k/stand/sboot/etherfun.c

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/mvme68k/stand/sboot/etherfun.c
diff -u src/sys/arch/mvme68k/stand/sboot/etherfun.c:1.11 src/sys/arch/mvme68k/stand/sboot/etherfun.c:1.12
--- src/sys/arch/mvme68k/stand/sboot/etherfun.c:1.11	Fri Feb 25 00:17:35 2011
+++ src/sys/arch/mvme68k/stand/sboot/etherfun.c	Thu Sep 29 09:18:17 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: etherfun.c,v 1.11 2011/02/25 00:17:35 joerg Exp $	*/
+/*	$NetBSD: etherfun.c,v 1.12 2011/09/29 09:18:17 he Exp $	*/
 
 /*
  * Copyright (c) 1995 Charles D. Cranor and Seth Widoff
@@ -90,7 +90,7 @@ rev_arp(void) 
 
 /* Send a tftp read request or acknowledgement 
mesgtype 0 is a read request, 1 is an aknowledgement */
-static const char HEXDIGITS[16] = "0123456789ABCDEF";
+const char HEXDIGITS[16] = "0123456789ABCDEF";
 
 void 
 do_send_tftp(int mesgtype)