diff options
Diffstat (limited to 'sys/arch/sparc/stand/boot.c')
-rw-r--r-- | sys/arch/sparc/stand/boot.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/sparc/stand/boot.c b/sys/arch/sparc/stand/boot.c index 7a696f208e7..5b423db0ad2 100644 --- a/sys/arch/sparc/stand/boot.c +++ b/sys/arch/sparc/stand/boot.c @@ -39,7 +39,6 @@ #include <sys/reboot.h> #include <a.out.h> #include <stand.h> -#include <paths.h> #include "promdev.h" @@ -51,6 +50,7 @@ int netif_debug; /* * Boot device is derived from ROM provided information. */ +#define DEFAULT_KERNEL "netbsd" extern char *version; unsigned long esym; @@ -69,11 +69,11 @@ main() prom_init(); - printf(">> OpenBSD BOOT [%s]\n", version); + printf(">> NetBSD BOOT [%s]\n", version); file = prom_bootfile; if (file == 0 || *file == 0) - file = _PATH_UNIX; + file = DEFAULT_KERNEL; for (;;) { if (prom_boothow & RB_ASKNAME) { |