Fix install floppy overflow by going to a 3-floppy boot.

Fix the single-image overflow by just doubling the allowed size.
This commit is contained in:
ross 2004-05-10 00:08:48 +00:00
parent 2ebcc58148
commit 062b87f655
3 changed files with 8 additions and 7 deletions

View File

@ -1,4 +1,5 @@
cd-hd-tape/obj/cdhdtape cd-hd-tape/obj/cdhdtape
fdset/obj/disk1of2 fdset/obj/disk1of3
fdset/obj/disk2of2 fdset/obj/disk2of3
fdset/obj/disk3of3
instkernel/obj/netbsd.gz instkernel/obj/netbsd.gz

View File

@ -1,10 +1,10 @@
# $NetBSD: Makefile,v 1.18 2003/07/10 10:34:01 lukem Exp $ # $NetBSD: Makefile,v 1.19 2004/05/10 00:08:49 ross Exp $
.include <bsd.own.mk> .include <bsd.own.mk>
.include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib" .include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
FLOPPYBASE= cdhdtape FLOPPYBASE= cdhdtape
FLOPPYSIZE= 5760 FLOPPYSIZE= 10000
FLOPPYMETAFILE!=printf "USTAR.volsize.%o" ${FLOPPYSIZE} FLOPPYMETAFILE!=printf "USTAR.volsize.%o" ${FLOPPYSIZE}
FLOPPYFILES= boot ${FLOPPYMETAFILE} netbsd FLOPPYFILES= boot ${FLOPPYMETAFILE} netbsd
FLOPPYMAX= 1 FLOPPYMAX= 1

View File

@ -1,13 +1,13 @@
# $NetBSD: Makefile,v 1.14 2003/07/10 10:34:01 lukem Exp $ # $NetBSD: Makefile,v 1.15 2004/05/10 00:08:49 ross Exp $
.include <bsd.own.mk> .include <bsd.own.mk>
.include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib" .include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
FLOPPYBASE= disk FLOPPYBASE= disk
FLOPPYSUFFIX= of2 FLOPPYSUFFIX= of3
FLOPPYSIZE= 2880 FLOPPYSIZE= 2880
FLOPPYFILES= boot netbsd FLOPPYFILES= boot netbsd
FLOPPYMAX= 2 FLOPPYMAX= 3
FLOPPY_RELEASEDIR= installation/floppy FLOPPY_RELEASEDIR= installation/floppy