summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-07-31 08:50:40 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-07-31 08:50:40 +0000
commita623e85c47433b5deac0917a7d3d69acaec51645 (patch)
tree7a856639a1e77447b5593347a4220f632626916c
parentbc4d1a679e7f51ee8c75116ddffaefa90242b408 (diff)
kernel is /bsd
-rw-r--r--sys/arch/vax/boot/boot.c4
-rw-r--r--sys/arch/vax/stand/boot.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/vax/boot/boot.c b/sys/arch/vax/boot/boot.c
index d85ddabdf5d..206db3dcf7a 100644
--- a/sys/arch/vax/boot/boot.c
+++ b/sys/arch/vax/boot/boot.c
@@ -63,7 +63,7 @@ main()
if ((howto & RB_ASKNAME) == 0) {
type = (devtype >> B_TYPESHIFT) & B_TYPEMASK;
if ((unsigned)type < ndevs && devsw[type].dv_name)
- strcpy(line, "/netbsd");
+ strcpy(line, "/bsd");
else
howto |= RB_SINGLE|RB_ASKNAME;
}
@@ -75,7 +75,7 @@ main()
printf(": ");
gets(line);
if (line[0] == 0) {
- strcpy(line, "/netbsd");
+ strcpy(line, "/bsd");
printf(": %s\n", line);
}
} else
diff --git a/sys/arch/vax/stand/boot.c b/sys/arch/vax/stand/boot.c
index d85ddabdf5d..206db3dcf7a 100644
--- a/sys/arch/vax/stand/boot.c
+++ b/sys/arch/vax/stand/boot.c
@@ -63,7 +63,7 @@ main()
if ((howto & RB_ASKNAME) == 0) {
type = (devtype >> B_TYPESHIFT) & B_TYPEMASK;
if ((unsigned)type < ndevs && devsw[type].dv_name)
- strcpy(line, "/netbsd");
+ strcpy(line, "/bsd");
else
howto |= RB_SINGLE|RB_ASKNAME;
}
@@ -75,7 +75,7 @@ main()
printf(": ");
gets(line);
if (line[0] == 0) {
- strcpy(line, "/netbsd");
+ strcpy(line, "/bsd");
printf(": %s\n", line);
}
} else