CVS commit: src/distrib/macppc/floppies/ramdisk

2019-01-06 Thread Sean Cole
Module Name:src
Committed By:   scole
Date:   Mon Jan  7 01:39:26 UTC 2019

Modified Files:
src/distrib/macppc/floppies/ramdisk: Makefile

Log Message:
increase IMAGESIZE slightly to avoid running out of space when doing some 
sysinst options


To generate a diff of this commit:
cvs rdiff -u -r1.49 -r1.50 src/distrib/macppc/floppies/ramdisk/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/distrib/macppc/floppies/ramdisk/Makefile
diff -u src/distrib/macppc/floppies/ramdisk/Makefile:1.49 src/distrib/macppc/floppies/ramdisk/Makefile:1.50
--- src/distrib/macppc/floppies/ramdisk/Makefile:1.49	Mon Nov 12 20:11:39 2018
+++ src/distrib/macppc/floppies/ramdisk/Makefile	Mon Jan  7 01:39:26 2019
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.49 2018/11/12 20:11:39 scole Exp $
+#	$NetBSD: Makefile,v 1.50 2019/01/07 01:39:26 scole Exp $
 
 .include 
 .include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
@@ -8,7 +8,7 @@ IMAGE=		ramdisk.fs
 #   src/sys/arch/macppc/conf/INSTALL
 #   src/sys/arch/macppc/conf/INSTALL_601
 #   src/sys/arch/macppc/conf/GENERIC_MD
-IMAGESIZE=	2560k
+IMAGESIZE=	2880k
 MAKEFS_FLAGS+=	-f 15
 
 WARNS=		1



CVS commit: src/distrib/macppc/floppies

2018-11-12 Thread Sean Cole
Module Name:src
Committed By:   scole
Date:   Mon Nov 12 20:16:46 UTC 2018

Added Files:
src/distrib/macppc/floppies/bootfloppy-601: Makefile
src/distrib/macppc/floppies/bootfloppy-common: Makefile.inc

Log Message:
install kernel for ppc601 floppies and iso


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/distrib/macppc/floppies/bootfloppy-601/Makefile
cvs rdiff -u -r0 -r1.1 \
src/distrib/macppc/floppies/bootfloppy-common/Makefile.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Added files:

Index: src/distrib/macppc/floppies/bootfloppy-601/Makefile
diff -u /dev/null src/distrib/macppc/floppies/bootfloppy-601/Makefile:1.1
--- /dev/null	Mon Nov 12 20:16:46 2018
+++ src/distrib/macppc/floppies/bootfloppy-601/Makefile	Mon Nov 12 20:16:46 2018
@@ -0,0 +1,8 @@
+#	$NetBSD: Makefile,v 1.1 2018/11/12 20:16:46 scole Exp $
+
+FLOPPY_NETBSD=	${KERNOBJ}/netbsd-INSTALL_601.gz
+FLOPPYBASE=	boot601_
+
+.include 
+
+.include "../bootfloppy-common/Makefile.inc"

Index: src/distrib/macppc/floppies/bootfloppy-common/Makefile.inc
diff -u /dev/null src/distrib/macppc/floppies/bootfloppy-common/Makefile.inc:1.1
--- /dev/null	Mon Nov 12 20:16:46 2018
+++ src/distrib/macppc/floppies/bootfloppy-common/Makefile.inc	Mon Nov 12 20:16:46 2018
@@ -0,0 +1,24 @@
+#	$NetBSD: Makefile.inc,v 1.1 2018/11/12 20:16:46 scole Exp $
+
+.include 
+.include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
+
+# Required variables:
+#  FLOPPY_NETBSD
+#  FLOPPYBASE
+
+FLOPPYSIZE=	2880
+FLOPPYFILES=	boot netbsd
+FLOPPYMAX=	3
+FLOPPYSUFFIX=	.fs
+
+FLOPPY_RELEASEDIR=	installation/floppy
+
+MDEC=		${DESTDIR}/usr/mdec
+KERNOBJ!=	cd ${.CURDIR}/../md-kernel && ${PRINTOBJDIR}
+FLOPPY_BOOT=	${MDEC}/ofwboot
+FLOPPYINSTBOOT=	"${TOOL_INSTALLBOOT} -v -m ${MACHINE} -t raw -B 17 @IMAGE@ ${MDEC}/bootxx ${FLOPPY_BOOT}"
+
+.include "${DISTRIBDIR}/common/Makefile.tarfloppy"
+
+.include 



CVS commit: src/distrib/macppc/floppies

2018-11-12 Thread Sean Cole
Module Name:src
Committed By:   scole
Date:   Mon Nov 12 20:11:39 UTC 2018

Modified Files:
src/distrib/macppc/floppies: Makefile
src/distrib/macppc/floppies/bootfloppy: Makefile
src/distrib/macppc/floppies/md-kernel: Makefile
src/distrib/macppc/floppies/ramdisk: Makefile

Log Message:
install kernel for ppc601 floppies and iso


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/distrib/macppc/floppies/Makefile
cvs rdiff -u -r1.28 -r1.29 src/distrib/macppc/floppies/bootfloppy/Makefile
cvs rdiff -u -r1.11 -r1.12 src/distrib/macppc/floppies/md-kernel/Makefile
cvs rdiff -u -r1.48 -r1.49 src/distrib/macppc/floppies/ramdisk/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/distrib/macppc/floppies/Makefile
diff -u src/distrib/macppc/floppies/Makefile:1.5 src/distrib/macppc/floppies/Makefile:1.6
--- src/distrib/macppc/floppies/Makefile:1.5	Fri Apr 12 02:19:30 2002
+++ src/distrib/macppc/floppies/Makefile	Mon Nov 12 20:11:39 2018
@@ -1,6 +1,6 @@
-#	$NetBSD: Makefile,v 1.5 2002/04/12 02:19:30 lukem Exp $
+#	$NetBSD: Makefile,v 1.6 2018/11/12 20:11:39 scole Exp $
 
-SUBDIR=	ramdisk .WAIT md-kernel .WAIT bootfloppy
+SUBDIR=	ramdisk .WAIT md-kernel .WAIT bootfloppy .WAIT bootfloppy-601
 TARGETS+=release
 
 .include 

Index: src/distrib/macppc/floppies/bootfloppy/Makefile
diff -u src/distrib/macppc/floppies/bootfloppy/Makefile:1.28 src/distrib/macppc/floppies/bootfloppy/Makefile:1.29
--- src/distrib/macppc/floppies/bootfloppy/Makefile:1.28	Thu Jan 29 20:47:12 2015
+++ src/distrib/macppc/floppies/bootfloppy/Makefile	Mon Nov 12 20:11:39 2018
@@ -1,22 +1,8 @@
-#	$NetBSD: Makefile,v 1.28 2015/01/29 20:47:12 joerg Exp $
+#	$NetBSD: Makefile,v 1.29 2018/11/12 20:11:39 scole Exp $
 
-.include 
-.include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
-
-FLOPPYBASE=	boot
-FLOPPYSIZE=	2880
-FLOPPYFILES=	boot netbsd
-FLOPPYMAX=	3
-FLOPPYSUFFIX=	.fs
-
-FLOPPY_RELEASEDIR=	installation/floppy
-
-MDEC=		${DESTDIR}/usr/mdec
-KERNOBJ!=	cd ${.CURDIR}/../md-kernel && ${PRINTOBJDIR}
 FLOPPY_NETBSD=	${KERNOBJ}/netbsd-INSTALL.gz
-FLOPPY_BOOT=	${MDEC}/ofwboot
-FLOPPYINSTBOOT=	"${TOOL_INSTALLBOOT} -v -m ${MACHINE} -t raw -B 17 @IMAGE@ ${MDEC}/bootxx ${FLOPPY_BOOT}"
+FLOPPYBASE=	boot
 
-.include "${DISTRIBDIR}/common/Makefile.tarfloppy"
+.include 
 
-.include 
+.include "../bootfloppy-common/Makefile.inc"

Index: src/distrib/macppc/floppies/md-kernel/Makefile
diff -u src/distrib/macppc/floppies/md-kernel/Makefile:1.11 src/distrib/macppc/floppies/md-kernel/Makefile:1.12
--- src/distrib/macppc/floppies/md-kernel/Makefile:1.11	Wed May  8 21:44:56 2002
+++ src/distrib/macppc/floppies/md-kernel/Makefile	Mon Nov 12 20:11:39 2018
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.11 2002/05/08 21:44:56 lukem Exp $
+#	$NetBSD: Makefile,v 1.12 2018/11/12 20:11:39 scole Exp $
 
 .include 
 .include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
@@ -7,6 +7,7 @@ RAMDISKDIR!=	cd ${.CURDIR}/../ramdisk &&
 RAMDISK=	${RAMDISKDIR}/ramdisk.fs
 
 MDSETTARGETS=		INSTALL		${RAMDISK}	-	\
+			INSTALL_601	${RAMDISK}	-	\
 			GENERIC_MD	${RAMDISK}	-
 MDSET_RELEASEDIR=	binary/kernel
 

Index: src/distrib/macppc/floppies/ramdisk/Makefile
diff -u src/distrib/macppc/floppies/ramdisk/Makefile:1.48 src/distrib/macppc/floppies/ramdisk/Makefile:1.49
--- src/distrib/macppc/floppies/ramdisk/Makefile:1.48	Tue Jan 24 18:04:03 2017
+++ src/distrib/macppc/floppies/ramdisk/Makefile	Mon Nov 12 20:11:39 2018
@@ -1,12 +1,12 @@
-#	$NetBSD: Makefile,v 1.48 2017/01/24 18:04:03 christos Exp $
+#	$NetBSD: Makefile,v 1.49 2018/11/12 20:11:39 scole Exp $
 
 .include 
 .include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
 
 IMAGE=		ramdisk.fs
-# This must be kept in sync with config option MEMORY_DISK_ROOT_SIZE
-# in both
+# This must be kept in sync with config option MEMORY_DISK_ROOT_SIZE in
 #   src/sys/arch/macppc/conf/INSTALL
+#   src/sys/arch/macppc/conf/INSTALL_601
 #   src/sys/arch/macppc/conf/GENERIC_MD
 IMAGESIZE=	2560k
 MAKEFS_FLAGS+=	-f 15



CVS commit: src/distrib/macppc/floppies/bootfloppy

2015-01-29 Thread Joerg Sonnenberger
Module Name:src
Committed By:   joerg
Date:   Thu Jan 29 20:47:12 UTC 2015

Modified Files:
src/distrib/macppc/floppies/bootfloppy: Makefile

Log Message:
Allow clang builds to use a third floppy.


To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 src/distrib/macppc/floppies/bootfloppy/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/distrib/macppc/floppies/bootfloppy/Makefile
diff -u src/distrib/macppc/floppies/bootfloppy/Makefile:1.27 src/distrib/macppc/floppies/bootfloppy/Makefile:1.28
--- src/distrib/macppc/floppies/bootfloppy/Makefile:1.27	Thu Jul 10 10:34:07 2003
+++ src/distrib/macppc/floppies/bootfloppy/Makefile	Thu Jan 29 20:47:12 2015
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.27 2003/07/10 10:34:07 lukem Exp $
+#	$NetBSD: Makefile,v 1.28 2015/01/29 20:47:12 joerg Exp $
 
 .include 
 .include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
@@ -6,7 +6,7 @@
 FLOPPYBASE=	boot
 FLOPPYSIZE=	2880
 FLOPPYFILES=	boot netbsd
-FLOPPYMAX=	2
+FLOPPYMAX=	3
 FLOPPYSUFFIX=	.fs
 
 FLOPPY_RELEASEDIR=	installation/floppy



CVS commit: src/distrib/macppc/floppies/ramdisk

2014-08-07 Thread Greg Troxel
Module Name:src
Committed By:   gdt
Date:   Thu Aug  7 15:48:19 UTC 2014

Modified Files:
src/distrib/macppc/floppies/ramdisk: Makefile

Log Message:
I need 2244k for src/distrib/macppc/floppies/ramdisk, rather than
2240k.  My build is normal, with a few uncommitted changes that really
shouldn't change the install situation.  Because 2240k isn't near a
magic boundary, just increase it a hair.


To generate a diff of this commit:
cvs rdiff -u -r1.43 -r1.44 src/distrib/macppc/floppies/ramdisk/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/distrib/macppc/floppies/ramdisk/Makefile
diff -u src/distrib/macppc/floppies/ramdisk/Makefile:1.43 src/distrib/macppc/floppies/ramdisk/Makefile:1.44
--- src/distrib/macppc/floppies/ramdisk/Makefile:1.43	Wed Aug  6 13:57:15 2014
+++ src/distrib/macppc/floppies/ramdisk/Makefile	Thu Aug  7 15:48:19 2014
@@ -1,10 +1,10 @@
-#	$NetBSD: Makefile,v 1.43 2014/08/06 13:57:15 martin Exp $
+#	$NetBSD: Makefile,v 1.44 2014/08/07 15:48:19 gdt Exp $
 
 .include 
 .include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
 
 IMAGE=		ramdisk.fs
-IMAGESIZE=	2240k
+IMAGESIZE=	2244k
 MAKEFS_FLAGS=	-f 15
 
 WARNS=		1



CVS commit: src/distrib/macppc/floppies/ramdisk

2014-08-06 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Wed Aug  6 13:57:15 UTC 2014

Modified Files:
src/distrib/macppc/floppies/ramdisk: Makefile

Log Message:
Bump ramdisksize even slightly more


To generate a diff of this commit:
cvs rdiff -u -r1.42 -r1.43 src/distrib/macppc/floppies/ramdisk/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/distrib/macppc/floppies/ramdisk/Makefile
diff -u src/distrib/macppc/floppies/ramdisk/Makefile:1.42 src/distrib/macppc/floppies/ramdisk/Makefile:1.43
--- src/distrib/macppc/floppies/ramdisk/Makefile:1.42	Tue Aug  5 16:18:16 2014
+++ src/distrib/macppc/floppies/ramdisk/Makefile	Wed Aug  6 13:57:15 2014
@@ -1,10 +1,10 @@
-#	$NetBSD: Makefile,v 1.42 2014/08/05 16:18:16 martin Exp $
+#	$NetBSD: Makefile,v 1.43 2014/08/06 13:57:15 martin Exp $
 
 .include 
 .include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
 
 IMAGE=		ramdisk.fs
-IMAGESIZE=	2236k
+IMAGESIZE=	2240k
 MAKEFS_FLAGS=	-f 15
 
 WARNS=		1



CVS commit: src/distrib/macppc/floppies/ramdisk

2014-08-05 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Tue Aug  5 16:18:16 UTC 2014

Modified Files:
src/distrib/macppc/floppies/ramdisk: Makefile

Log Message:
Bump ramdisk size


To generate a diff of this commit:
cvs rdiff -u -r1.41 -r1.42 src/distrib/macppc/floppies/ramdisk/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/distrib/macppc/floppies/ramdisk/Makefile
diff -u src/distrib/macppc/floppies/ramdisk/Makefile:1.41 src/distrib/macppc/floppies/ramdisk/Makefile:1.42
--- src/distrib/macppc/floppies/ramdisk/Makefile:1.41	Mon Aug  4 11:30:35 2014
+++ src/distrib/macppc/floppies/ramdisk/Makefile	Tue Aug  5 16:18:16 2014
@@ -1,10 +1,10 @@
-#	$NetBSD: Makefile,v 1.41 2014/08/04 11:30:35 martin Exp $
+#	$NetBSD: Makefile,v 1.42 2014/08/05 16:18:16 martin Exp $
 
 .include 
 .include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
 
 IMAGE=		ramdisk.fs
-IMAGESIZE=	2218k
+IMAGESIZE=	2236k
 MAKEFS_FLAGS=	-f 15
 
 WARNS=		1



CVS commit: src/distrib/macppc/floppies/ramdisk

2014-08-04 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Aug  4 11:30:35 UTC 2014

Modified Files:
src/distrib/macppc/floppies/ramdisk: Makefile

Log Message:
Slightly extend ramdisk size


To generate a diff of this commit:
cvs rdiff -u -r1.40 -r1.41 src/distrib/macppc/floppies/ramdisk/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/distrib/macppc/floppies/ramdisk/Makefile
diff -u src/distrib/macppc/floppies/ramdisk/Makefile:1.40 src/distrib/macppc/floppies/ramdisk/Makefile:1.41
--- src/distrib/macppc/floppies/ramdisk/Makefile:1.40	Fri Mar 23 18:37:42 2012
+++ src/distrib/macppc/floppies/ramdisk/Makefile	Mon Aug  4 11:30:35 2014
@@ -1,10 +1,10 @@
-#	$NetBSD: Makefile,v 1.40 2012/03/23 18:37:42 he Exp $
+#	$NetBSD: Makefile,v 1.41 2014/08/04 11:30:35 martin Exp $
 
 .include 
 .include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
 
 IMAGE=		ramdisk.fs
-IMAGESIZE=	2212k
+IMAGESIZE=	2218k
 MAKEFS_FLAGS=	-f 15
 
 WARNS=		1



CVS commit: src/distrib/macppc/floppies/ramdisk

2013-04-24 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Wed Apr 24 08:04:18 UTC 2013

Modified Files:
src/distrib/macppc/floppies/ramdisk: list

Log Message:
sbin/pdisk -> external/bsd/pdisk change. Fix build.


To generate a diff of this commit:
cvs rdiff -u -r1.38 -r1.39 src/distrib/macppc/floppies/ramdisk/list

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/distrib/macppc/floppies/ramdisk/list
diff -u src/distrib/macppc/floppies/ramdisk/list:1.38 src/distrib/macppc/floppies/ramdisk/list:1.39
--- src/distrib/macppc/floppies/ramdisk/list:1.38	Fri Jan 14 10:26:33 2011
+++ src/distrib/macppc/floppies/ramdisk/list	Wed Apr 24 08:04:18 2013
@@ -1,4 +1,4 @@
-#	$NetBSD: list,v 1.38 2011/01/14 10:26:33 tsutsui Exp $
+#	$NetBSD: list,v 1.39 2013/04/24 08:04:18 msaitoh Exp $
 
 SRCDIRS	bin sbin usr.bin usr.sbin
 
@@ -65,6 +65,7 @@ SPECIAL	ed		srcdir	distrib/utils/x_ed
 SPECIAL	gzip		srcdir	distrib/utils/x_gzip
 SPECIAL	ifconfig	srcdir	distrib/utils/x_ifconfig
 SPECIAL	more		srcdir	distrib/utils/more
+SPECIAL	pdisk		srcdir	external/bsd/pdisk/bin
 SPECIAL	ping		srcdir	distrib/utils/x_ping
 SPECIAL	route		srcdir	distrib/utils/x_route
 SPECIAL	umount		srcdir	distrib/utils/x_umount



CVS commit: src/distrib/macppc/floppies/ramdisk

2009-11-27 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Fri Nov 27 10:23:16 UTC 2009

Modified Files:
src/distrib/macppc/floppies/ramdisk: list

Log Message:
Remove unnecessary and never used usr/mdec/mbr from install ramdisk.


To generate a diff of this commit:
cvs rdiff -u -r1.34 -r1.35 src/distrib/macppc/floppies/ramdisk/list

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/distrib/macppc/floppies/ramdisk/list
diff -u src/distrib/macppc/floppies/ramdisk/list:1.34 src/distrib/macppc/floppies/ramdisk/list:1.35
--- src/distrib/macppc/floppies/ramdisk/list:1.34	Sun Sep 20 23:19:54 2009
+++ src/distrib/macppc/floppies/ramdisk/list	Fri Nov 27 10:23:16 2009
@@ -1,4 +1,4 @@
-#	$NetBSD: list,v 1.34 2009/09/20 23:19:54 abs Exp $
+#	$NetBSD: list,v 1.35 2009/11/27 10:23:16 tsutsui Exp $
 
 SRCDIRS	bin sbin usr.bin usr.sbin
 
@@ -72,7 +72,6 @@
 LIBS	libhack.o -ledit -lutil -lcurses -ltermcap -lrmt -ll -lm -lz -lprop
 
 COPY	${DESTDIR}/usr/mdec/bootxx	usr/mdec/bootxx
-COPY	${DESTDIR}/usr/mdec/mbr		usr/mdec/mbr
 COPY	${DESTDIR}/usr/mdec/ofwboot	usr/mdec/ofwboot
 
 # various files that we need in /etc for the install