diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-04-25 21:32:17 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-04-25 21:32:17 +0000 |
commit | ca20eee8a154b2ffc9df0940a63371bcd284aaed (patch) | |
tree | 2be4056cd94f078774d7c965c865f62e5289467a /distrib/sun3 | |
parent | d44dfb5d692e3c38d987ca775af156909295c7b3 (diff) |
Did some s/NetBSD/OpenBSD/, s/netbsd/bsd/ and $OpenBSD$ additions.
However this stuff is largely related to NetBSD and must be completely
redone, if we will make real relases sometime
Diffstat (limited to 'distrib/sun3')
-rw-r--r-- | distrib/sun3/common/mr.profile | 4 | ||||
-rw-r--r-- | distrib/sun3/common/rd.passwd | 2 | ||||
-rw-r--r-- | distrib/sun3/common/rd.welcome | 2 | ||||
-rw-r--r-- | distrib/sun3/miniroot/Makefile | 5 | ||||
-rw-r--r-- | distrib/sun3/ramdisk/Makefile | 13 |
5 files changed, 14 insertions, 12 deletions
diff --git a/distrib/sun3/common/mr.profile b/distrib/sun3/common/mr.profile index 52b23f6a79c..e99ca75fa85 100644 --- a/distrib/sun3/common/mr.profile +++ b/distrib/sun3/common/mr.profile @@ -1,4 +1,4 @@ -# +# $OpenBSD: mr.profile,v 1.3 1996/04/25 21:31:46 niklas Exp $ # $NetBSD: mr.profile,v 1.2 1995/11/21 21:19:08 gwr Exp $ # # Copyright (c) 1995 Jason R. Thorpe @@ -52,7 +52,7 @@ update sh /.remount # run the installation script. -echo 'To install NetBSD, enter the command: install' +echo 'To install OpenBSD, enter the command: install' echo 'Otherwise, enter the command: halt' # /install XXX - Not yet... diff --git a/distrib/sun3/common/rd.passwd b/distrib/sun3/common/rd.passwd index b524734954a..9e1644a7235 100644 --- a/distrib/sun3/common/rd.passwd +++ b/distrib/sun3/common/rd.passwd @@ -1 +1 @@ -root::0:0:NetBSD RAM-disk root:/root:/bin/sh +root::0:0:OpenBSD RAM-disk root:/root:/bin/sh diff --git a/distrib/sun3/common/rd.welcome b/distrib/sun3/common/rd.welcome index 9c1cf8fa3b2..4888456008a 100644 --- a/distrib/sun3/common/rd.welcome +++ b/distrib/sun3/common/rd.welcome @@ -1,5 +1,5 @@ - Welcome to the NetBSD/sun3 RAMDISK root! + Welcome to the OpenBSD/sun3 RAMDISK root! This environment is designed to do only three things: 1: Partititon your disk (use the command: edlabel /dev/rsd0c) diff --git a/distrib/sun3/miniroot/Makefile b/distrib/sun3/miniroot/Makefile index 9e22b7ca78c..6965289b2f9 100644 --- a/distrib/sun3/miniroot/Makefile +++ b/distrib/sun3/miniroot/Makefile @@ -1,3 +1,4 @@ +# $OpenBSD: Makefile,v 1.3 1996/04/25 21:31:56 niklas Exp $ # $NetBSD: Makefile,v 1.3 1995/11/21 21:19:12 gwr Exp $ TOP= ${.CURDIR}/.. @@ -16,7 +17,7 @@ LISTS= ${TOP}/common/mini_sbin.list \ ${TOP}/common/mini_xx.list \ ${TOP}/common/${IMAGE}.list -KERNEL=${SRCSYSDIR}/arch/sun3/compile/GENERIC/netbsd +KERNEL=${SRCSYSDIR}/arch/sun3/compile/GENERIC/bsd MOUNT_POINT= /mnt #BDEV= /dev/sd2b @@ -42,7 +43,7 @@ ${IMAGE}.gz: ${TREE} ${LISTS} ${CBIN} mini_xx sync ; sleep 1 ; sync cd ${MOUNT_POINT} ;\ usr/mdec/installboot -v ufsboot usr/mdec/bootxx ${CDEV} - cp ${KERNEL} ${MOUNT_POINT}/netbsd + cp ${KERNEL} ${MOUNT_POINT}/bsd sync @echo "" @df -i ${MOUNT_POINT} diff --git a/distrib/sun3/ramdisk/Makefile b/distrib/sun3/ramdisk/Makefile index 278e1c30042..dd40cc3b6be 100644 --- a/distrib/sun3/ramdisk/Makefile +++ b/distrib/sun3/ramdisk/Makefile @@ -1,3 +1,4 @@ +# $OpenBSD: Makefile,v 1.3 1996/04/25 21:32:01 niklas Exp $ # $NetBSD: Makefile,v 1.3 1995/11/21 21:19:14 gwr Exp $ TOP= ${.CURDIR}/.. @@ -13,7 +14,7 @@ TREE= ${TOP}/common/${IMAGE}.tree LISTS= ${TOP}/common/${CBIN}.list \ ${TOP}/common/${IMAGE}.list -KERNEL=${SRCSYSDIR}/arch/sun3/compile/RAMDISK/netbsd +KERNEL=${SRCSYSDIR}/arch/sun3/compile/RAMDISK/bsd MOUNT_POINT= /mnt BDEV= /dev/rd0 @@ -25,12 +26,12 @@ NBLKS= 512 # old format, minfree, opt, b/i trks, sects, cpg NEWFSARGS= -O -m 0 -o space -i 2048 -t 2 -u 16 -c 16 -CLEANFILES= netbsd-rd rdsetroot ${IMAGE}.fs +CLEANFILES= bsd-rd rdsetroot ${IMAGE}.fs -netbsd-rd : rdsetroot ${IMAGE}.fs - cp ${KERNEL} netbsd-tmp - ./rdsetroot netbsd-tmp < ${IMAGE}.fs - -mv -f netbsd-tmp $@ +bsd-rd : rdsetroot ${IMAGE}.fs + cp ${KERNEL} bsd-tmp + ./rdsetroot bsd-tmp < ${IMAGE}.fs + -mv -f bsd-tmp $@ rdsetroot: ${TOP}/common/rdsetroot.c $(CC) -o $@ -DDEBUG ${TOP}/common/rdsetroot.c |