diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-07-31 16:24:13 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-07-31 16:24:13 +0000 |
commit | 17ddd4f490572b03c77f1bc987382cb16fc3a931 (patch) | |
tree | 033e22b3dffd95ff4b98b783d4e178efb9f27b00 /sys/arch | |
parent | 6fc958a88ae2530b53ef5663b8f849eee5ff19fc (diff) |
kernel is /bsd, and we are OpenBSD
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/alpha/stand/boot/boot.c | 4 | ||||
-rw-r--r-- | sys/arch/alpha/stand/boot/newvers.sh | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/alpha/stand/boot/boot.c b/sys/arch/alpha/stand/boot/boot.c index a2e5c0e90d3..2ce83ae8f00 100644 --- a/sys/arch/alpha/stand/boot/boot.c +++ b/sys/arch/alpha/stand/boot/boot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: boot.c,v 1.4 1996/07/29 23:01:33 niklas Exp $ */ +/* $OpenBSD: boot.c,v 1.5 1996/07/31 16:24:11 niklas Exp $ */ /* $NetBSD: boot.c,v 1.6 1996/05/10 00:15:08 cgd Exp $ */ /* @@ -55,7 +55,7 @@ static int aout_exec __P((int, struct exec *, u_int64_t *)); static int coff_exec __P((int, struct ecoff_exechdr *, u_int64_t *)); static int loadfile __P((char *, u_int64_t *)); -char line[64] = "/netbsd"; +char line[64] = "/bsd"; char boot_file[128]; char boot_dev[128]; diff --git a/sys/arch/alpha/stand/boot/newvers.sh b/sys/arch/alpha/stand/boot/newvers.sh index 3a504fd6583..a65d3cfb37d 100644 --- a/sys/arch/alpha/stand/boot/newvers.sh +++ b/sys/arch/alpha/stand/boot/newvers.sh @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: newvers.sh,v 1.3 1996/07/29 23:01:42 niklas Exp $ +# $OpenBSD: newvers.sh,v 1.4 1996/07/31 16:24:12 niklas Exp $ # $NetBSD: newvers.sh,v 1.2 1995/11/23 02:39:48 cgd Exp $ # # Copyright (c) 1984, 1986, 1990, 1993 @@ -39,7 +39,7 @@ u=${USER-root} h=`hostname` t=`date` r=`head -1 $1` -echo "char bootprog_name[] = \"NetBSD/Alpha boot\";" > vers.c +echo "char bootprog_name[] = \"OpenBSD/Alpha boot\";" > vers.c echo "char bootprog_rev[] = \"${r}\";" >> vers.c echo "char bootprog_date[] = \"${t}\";" >> vers.c echo "char bootprog_maker[] = \"${u}@${h}\";" >> vers.c |