diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1996-08-11 09:13:23 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1996-08-11 09:13:23 +0000 |
commit | 2da8eeaa7a58bf7bbe288cae1a6a7a740d0c13fa (patch) | |
tree | ec67377d434d4ee3bee85912b05d94fd1d233ddc /sys | |
parent | 9bde54e70839d3be6aa63e42d9495d5530263ded (diff) |
netbsd -> openbsd, NetBSD -> OpenBSD, kernel name
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/sparc/stand/binstall.sh | 3 | ||||
-rw-r--r-- | sys/arch/sparc/stand/boot.c | 7 |
2 files changed, 6 insertions, 4 deletions
diff --git a/sys/arch/sparc/stand/binstall.sh b/sys/arch/sparc/stand/binstall.sh index 1b2db4158af..875957fcaa8 100644 --- a/sys/arch/sparc/stand/binstall.sh +++ b/sys/arch/sparc/stand/binstall.sh @@ -1,4 +1,5 @@ #!/bin/sh +# $OpenBSD: binstall.sh,v 1.4 1996/08/11 09:13:21 downsj Exp $ # $NetBSD: binstall.sh,v 1.3 1996/04/07 20:00:12 thorpej Exp $ # @@ -106,7 +107,7 @@ case $WHAT in ;; "net") - TARGET=$DEST/boot.sparc.netbsd.$KARCH + TARGET=$DEST/boot.sparc.openbsd.$KARCH vecho Target: $TARGET $DOIT dd if=${MDEC}/boot of=$TARGET skip=$SKIP bs=32 ;; diff --git a/sys/arch/sparc/stand/boot.c b/sys/arch/sparc/stand/boot.c index 5b423db0ad2..44ac550b037 100644 --- a/sys/arch/sparc/stand/boot.c +++ b/sys/arch/sparc/stand/boot.c @@ -1,3 +1,4 @@ +/* $OpenBSD: boot.c,v 1.5 1996/08/11 09:13:22 downsj Exp $ */ /* $NetBSD: boot.c,v 1.13 1995/09/17 00:50:54 pk Exp $ */ /*- @@ -38,6 +39,7 @@ #include <sys/param.h> #include <sys/reboot.h> #include <a.out.h> +#include <paths.h> #include <stand.h> #include "promdev.h" @@ -50,7 +52,6 @@ int netif_debug; /* * Boot device is derived from ROM provided information. */ -#define DEFAULT_KERNEL "netbsd" extern char *version; unsigned long esym; @@ -69,11 +70,11 @@ main() prom_init(); - printf(">> NetBSD BOOT [%s]\n", version); + printf(">> OpenBSD BOOT [%s]\n", version); file = prom_bootfile; if (file == 0 || *file == 0) - file = DEFAULT_KERNEL; + file = _PATH_UNIX; for (;;) { if (prom_boothow & RB_ASKNAME) { |