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