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

2016-01-25 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Jan 25 21:58:02 UTC 2016

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

Log Message:
uses _KERNTYPES


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/sys/arch/mvme68k/stand/installboot/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/installboot/Makefile
diff -u src/sys/arch/mvme68k/stand/installboot/Makefile:1.17 src/sys/arch/mvme68k/stand/installboot/Makefile:1.18
--- src/sys/arch/mvme68k/stand/installboot/Makefile:1.17	Wed Aug 21 02:58:58 2013
+++ src/sys/arch/mvme68k/stand/installboot/Makefile	Mon Jan 25 16:58:02 2016
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.17 2013/08/21 06:58:58 matt Exp $
+#	$NetBSD: Makefile,v 1.18 2016/01/25 21:58:02 christos Exp $
 
 NOMAN=	# defined
 
@@ -8,7 +8,7 @@ PROG=	installboot
 BINDIR=/usr/mdec
 LIBSA=${.CURDIR}/../../../../lib/libsa
 COPTS+= -Wall -Wstrict-prototypes -Wmissing-prototypes
-CPPFLAGS+= -I${LIBSA} -I. -D__daddr_t=int32_t
+CPPFLAGS+= -I${LIBSA} -I. -D__daddr_t=int32_t -D_KERNTYPES
 # Need this to work in the miniroot
 LDSTATIC= -static
 



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

2014-09-21 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Sep 21 16:33:48 UTC 2014

Modified Files:
src/sys/arch/mvme68k/stand/installboot: installboot.c

Log Message:
remove dead code


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 \
src/sys/arch/mvme68k/stand/installboot/installboot.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/installboot/installboot.c
diff -u src/sys/arch/mvme68k/stand/installboot/installboot.c:1.18 src/sys/arch/mvme68k/stand/installboot/installboot.c:1.19
--- src/sys/arch/mvme68k/stand/installboot/installboot.c:1.18	Sat Jun 22 22:06:05 2013
+++ src/sys/arch/mvme68k/stand/installboot/installboot.c	Sun Sep 21 12:33:48 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: installboot.c,v 1.18 2013/06/23 02:06:05 dholland Exp $ */
+/*	$NetBSD: installboot.c,v 1.19 2014/09/21 16:33:48 christos Exp $ */
 
 /*-
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -219,10 +219,6 @@ loadprotoblocks(char *fname, size_t *siz
 	}
 
 	return (char *)bp;
-
-	if (bp)
-		free((void *)bp);
-	return NULL;
 }
 
 static void



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

2013-08-21 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Wed Aug 21 06:58:58 UTC 2013

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

Log Message:
Use bsd.klinks.mk


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/sys/arch/mvme68k/stand/installboot/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/installboot/Makefile
diff -u src/sys/arch/mvme68k/stand/installboot/Makefile:1.16 src/sys/arch/mvme68k/stand/installboot/Makefile:1.17
--- src/sys/arch/mvme68k/stand/installboot/Makefile:1.16	Wed Dec 28 08:08:00 2005
+++ src/sys/arch/mvme68k/stand/installboot/Makefile	Wed Aug 21 06:58:58 2013
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.16 2005/12/28 08:08:00 skrll Exp $
+#	$NetBSD: Makefile,v 1.17 2013/08/21 06:58:58 matt Exp $
 
 NOMAN=	# defined
 
@@ -12,19 +12,9 @@ CPPFLAGS+= -I${LIBSA} -I. -D__daddr_t=in
 # Need this to work in the miniroot
 LDSTATIC= -static
 
-.if !make(obj)  !make(clean)  !make(cleandir)
-.BEGIN: machine
-.NOPATH: machine
-
-machine::
-	-rm -f $@
-	ln -s ${.CURDIR}/../../include $@
-.endif
-
-CLEANFILES+= machine
-
 .PATH.c: ${LIBSA}
 
 SRCS=	installboot.c byteorder.c loadfile.c loadfile_aout.c loadfile_elf32.c
 
 .include bsd.prog.mk
+.include bsd.klinks.mk