Now the miniroot based 'netbsd.ram.gz' is being installed into the installation
release dir we need to rename our 'netbsd.ram.gz' to 'netbsd.syram.gz'. Man{ag,gl}ing two installation systems for NetBSD/sparc just gets more fun.
This commit is contained in:
parent
b1b976ee25
commit
8b08f6e605
|
@ -1,4 +1,4 @@
|
|||
.\" $NetBSD: install,v 1.26 2000/09/04 16:08:50 abs Exp $
|
||||
.\" $NetBSD: install,v 1.27 2000/09/04 16:54:40 abs Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 1999 The NetBSD Foundation, Inc.
|
||||
.\" All rights reserved.
|
||||
|
@ -215,14 +215,14 @@ script based install.
|
|||
Follow this section and skip the next if you wish to use the easier 'sysinst'
|
||||
installation method.
|
||||
.Pp
|
||||
Copy the installation/netboot/netbsd.ram.gz image into the exported
|
||||
Copy the installation/netboot/netbsd.syram.gz image into the exported
|
||||
root directory for your machine, then boot your workstation from the
|
||||
server by entering the appropriate `boot' command at the monitor prompt.
|
||||
Depending on the PROM version in your machine, this command takes one of
|
||||
the following forms:
|
||||
.Dl "\*> b le()netbsd.ram.gz # for sun4 monitors
|
||||
.Dl "ok boot le()netbsd.ram.gz # for version 1 OpenBOOT ROMs
|
||||
.Dl "ok boot net netbsd.ram.gz # for version 2 OpenBOOT ROMs
|
||||
.Dl "\*> b le()netbsd.syram.gz # for sun4 monitors
|
||||
.Dl "ok boot le()netbsd.syram.gz # for version 1 OpenBOOT ROMs
|
||||
.Dl "ok boot net netbsd.syram.gz # for version 2 OpenBOOT ROMs
|
||||
.Pp
|
||||
This will boot the
|
||||
.Nx
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.7 2000/09/04 16:36:59 abs Exp $
|
||||
# $NetBSD: Makefile,v 1.8 2000/09/04 16:54:39 abs Exp $
|
||||
|
||||
TOP= ${.CURDIR}/..
|
||||
MINIROOT= ${.CURDIR}/../../miniroot
|
||||
|
@ -35,9 +35,9 @@ DISKTYPE= floppy
|
|||
# 204800 1167k, 29 inodes free
|
||||
INO_BYTES= 204800
|
||||
|
||||
CLEANFILES+= netbsd.ram.gz netbsd.tmp
|
||||
CLEANFILES+= netbsd.syram.gz netbsd.tmp
|
||||
|
||||
${IMAGE}: netbsd.ram.gz
|
||||
${IMAGE}: netbsd.syram.gz
|
||||
dd if=/dev/zero of=${IMAGE} bs=1440k count=1
|
||||
vnconfig -t ${DISKTYPE} -v -c ${VND_CDEV} ${IMAGE}
|
||||
disklabel -rw ${VND_CDEV} ${DISKTYPE}
|
||||
|
@ -62,7 +62,7 @@ unconfig:
|
|||
-umount -f ${MOUNT_POINT}
|
||||
-vnconfig -u ${VND_DEV}
|
||||
|
||||
netbsd.ram.gz: ${KERN} ${RAMDISK}
|
||||
netbsd.syram.gz: ${KERN} ${RAMDISK}
|
||||
cp ${KERN} netbsd.tmp
|
||||
mdsetimage -v netbsd.tmp ${RAMDISK}
|
||||
gzip netbsd.tmp
|
||||
|
@ -82,7 +82,7 @@ release:
|
|||
@false
|
||||
.else
|
||||
release: $(IMAGE)
|
||||
cp netbsd.ram.gz $(RELEASEDIR)/installation/netboot
|
||||
cp netbsd.syram.gz $(RELEASEDIR)/installation/netboot
|
||||
gzip -c -9 < $(.OBJDIR)/$(IMAGE) \
|
||||
> $(RELEASEDIR)/installation/bootfs/$(IMAGE).gz
|
||||
.endif # RELEASEDIR check
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: list,v 1.1 1999/04/30 05:11:47 abs Exp $
|
||||
# $NetBSD: list,v 1.2 2000/09/04 16:54:39 abs Exp $
|
||||
|
||||
# copy the kernel
|
||||
COPY ${OBJDIR}/netbsd.ram.gz netbsd.gz
|
||||
COPY ${OBJDIR}/netbsd.syram.gz netbsd.gz
|
||||
|
|
Loading…
Reference in New Issue