diff options
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/vax/boot/boot.c | 4 | ||||
-rw-r--r-- | sys/arch/vax/stand/boot.c | 4 |
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 |