diff options
| author | Warner Losh <imp@FreeBSD.org> | 2016-01-26 06:26:19 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2016-01-26 06:26:19 +0000 |
| commit | 5bbc34e185f5357136168fe8610dacc6125f3f2c (patch) | |
| tree | f123d22bfd5541b4c69ca788dbb94c382004547d /sys/boot/sparc64 | |
| parent | f51b072d4cf8744112e743388d0d5293df7f349e (diff) | |
Notes
Diffstat (limited to 'sys/boot/sparc64')
| -rw-r--r-- | sys/boot/sparc64/boot1/boot1.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/boot/sparc64/boot1/boot1.c b/sys/boot/sparc64/boot1/boot1.c index 6c43c9314f3f..d0b738039b0f 100644 --- a/sys/boot/sparc64/boot1/boot1.c +++ b/sys/boot/sparc64/boot1/boot1.c @@ -24,8 +24,8 @@ __FBSDID("$FreeBSD$"); #include <machine/elf.h> #include <machine/stdarg.h> -#define _PATH_LOADER "/boot/loader" -#define _PATH_KERNEL "/boot/kernel/kernel" +#include "paths.h" + #define READ_BUF_SIZE 8192 typedef int putc_func_t(char c, void *arg); @@ -324,7 +324,7 @@ main(int ac, char **av) const char *path; int i; - path = _PATH_LOADER; + path = PATH_LOADER; for (i = 0; i < ac; i++) { switch (av[i][0]) { case '-': |
