aboutsummaryrefslogtreecommitdiff
path: root/sys/boot/sparc64
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2016-01-26 06:26:19 +0000
committerWarner Losh <imp@FreeBSD.org>2016-01-26 06:26:19 +0000
commit5bbc34e185f5357136168fe8610dacc6125f3f2c (patch)
treef123d22bfd5541b4c69ca788dbb94c382004547d /sys/boot/sparc64
parentf51b072d4cf8744112e743388d0d5293df7f349e (diff)
Notes
Diffstat (limited to 'sys/boot/sparc64')
-rw-r--r--sys/boot/sparc64/boot1/boot1.c6
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 '-':