diff options
author | 1996-10-14 09:05:13 +0000 | |
---|---|---|
committer | 1996-10-14 09:05:13 +0000 | |
commit | 228c70c38b4d96a5afee5ae65499cfd81bf38be3 (patch) | |
tree | 74b2dd0b5b3f80b7ee7d8e1b77a4d80c6063dd1d | |
parent | sync (diff) | |
download | wireguard-openbsd-228c70c38b4d96a5afee5ae65499cfd81bf38be3.tar.xz wireguard-openbsd-228c70c38b4d96a5afee5ae65499cfd81bf38be3.zip |
openbsd
-rw-r--r-- | sys/arch/sun3/stand/libsa/devopen.c | 2 | ||||
-rw-r--r-- | sys/arch/sun3/stand/libsa/promboot.c | 2 | ||||
-rw-r--r-- | sys/arch/sun3/stand/netboot/boot.c | 4 | ||||
-rw-r--r-- | sys/arch/sun3/stand/tapeboot/boot.c | 2 | ||||
-rw-r--r-- | sys/arch/sun3/stand/ufsboot/boot.c | 6 |
5 files changed, 8 insertions, 8 deletions
diff --git a/sys/arch/sun3/stand/libsa/devopen.c b/sys/arch/sun3/stand/libsa/devopen.c index e876ddaa092..2a53a76c326 100644 --- a/sys/arch/sun3/stand/libsa/devopen.c +++ b/sys/arch/sun3/stand/libsa/devopen.c @@ -6,7 +6,7 @@ /* * Open the device named by the combined device/file name - * given as the "fname" arg, something like: "sd()netbsd" + * given as the "fname" arg, something like: "sd()bsd" * * However, Sun PROMs don't really let you choose which * device you will talk to. You can only open the device diff --git a/sys/arch/sun3/stand/libsa/promboot.c b/sys/arch/sun3/stand/libsa/promboot.c index 1a1cad0d8c7..b8fa8100349 100644 --- a/sys/arch/sun3/stand/libsa/promboot.c +++ b/sys/arch/sun3/stand/libsa/promboot.c @@ -14,7 +14,7 @@ int debug = 0; /* * Get useful info from the PROM bootparams struct, i.e.: - * arg[0] = sd(0,0,0)netbsd + * arg[0] = sd(0,0,0)bsd * arg[1] = -sa */ diff --git a/sys/arch/sun3/stand/netboot/boot.c b/sys/arch/sun3/stand/netboot/boot.c index ce63810ecd1..aadec09a146 100644 --- a/sys/arch/sun3/stand/netboot/boot.c +++ b/sys/arch/sun3/stand/netboot/boot.c @@ -49,7 +49,7 @@ #define LOADADDR 0x4000 extern char *version; -char defname[32] = "netbsd"; +char defname[32] = "bsd"; char line[80]; @@ -58,7 +58,7 @@ main() char *cp, *file; int io; - printf(">> NetBSD netboot [%s]\n", version); + printf(">> OpenBSD netboot [%s]\n", version); prom_get_boot_info(); file = defname; diff --git a/sys/arch/sun3/stand/tapeboot/boot.c b/sys/arch/sun3/stand/tapeboot/boot.c index db1ae666339..d7af49d15ff 100644 --- a/sys/arch/sun3/stand/tapeboot/boot.c +++ b/sys/arch/sun3/stand/tapeboot/boot.c @@ -61,7 +61,7 @@ main() char *cp, *file; int io; - printf(">> NetBSD tapeboot [%s]\n", version); + printf(">> OpenBSD tapeboot [%s]\n", version); prom_get_boot_info(); file = defname; diff --git a/sys/arch/sun3/stand/ufsboot/boot.c b/sys/arch/sun3/stand/ufsboot/boot.c index 42bae88cf37..528688dd34f 100644 --- a/sys/arch/sun3/stand/ufsboot/boot.c +++ b/sys/arch/sun3/stand/ufsboot/boot.c @@ -1,4 +1,4 @@ -/* $NetBSD: boot.c,v 1.2 1995/09/23 03:42:52 gwr Exp $ */ + /*- * Copyright (c) 1982, 1986, 1990, 1993 @@ -52,7 +52,7 @@ int errno; #define LOADADDR 0x4000 extern char *version; -char defname[32] = "netbsd"; +char defname[32] = "bsd"; char line[80]; @@ -61,7 +61,7 @@ main() char *cp, *file; int io; - printf(">> NetBSD ufsboot [%s]\n", version); + printf(">> OpenBSD ufsboot [%s]\n", version); prom_get_boot_info(); file = defname; |