Symbol: bootpath
sys/arch/hppa/include/pdc.h
476
struct device_path bootpath; /* 0x24: boot path */
sys/arch/loongson/stand/boot/machdep.c
105
bootpath = pmon_getenv("al");
sys/arch/loongson/stand/boot/machdep.c
114
if (bootpath != NULL && strncmp(bootpath, "tftp://", 7) == 0)
sys/arch/loongson/stand/boot/machdep.c
115
bootpath = NULL;
sys/arch/loongson/stand/boot/machdep.c
121
if (bootpath != NULL) {
sys/arch/loongson/stand/boot/machdep.c
122
tmp = strchr(bootpath, '@');
sys/arch/loongson/stand/boot/machdep.c
124
bootpath = NULL;
sys/arch/loongson/stand/boot/machdep.c
126
bootpath = tmp + 1;
sys/arch/loongson/stand/boot/machdep.c
127
tmp = strchr(bootpath, '/');
sys/arch/loongson/stand/boot/machdep.c
129
bootpath = NULL;
sys/arch/loongson/stand/boot/machdep.c
131
bootpathlen = tmp - bootpath;
sys/arch/loongson/stand/boot/machdep.c
136
if (bootpath != NULL && bootpathlen >= 3) {
sys/arch/loongson/stand/boot/machdep.c
139
strncpy(path, bootpath, bootpathlen);
sys/arch/loongson/stand/boot/machdep.c
142
if (bootpath[bootpathlen - 1] >= '0' &&
sys/arch/loongson/stand/boot/machdep.c
143
bootpath[bootpathlen - 1] <= '9')
sys/arch/loongson/stand/boot/machdep.c
67
const char *bootpath = NULL;
sys/arch/loongson/stand/boot/machdep.c
99
bootpath = tmp;
sys/arch/macppc/macppc/autoconf.c
272
printf("bootpath: %s\n", bootpath);
sys/arch/macppc/macppc/machdep.c
105
char *bootpath;
sys/arch/macppc/macppc/machdep.c
249
bootpath= &bootpathbuf[0];
sys/arch/macppc/macppc/machdep.c
250
while ( *++bootpath && *bootpath != ' ');
sys/arch/macppc/macppc/machdep.c
251
if (*bootpath) {
sys/arch/macppc/macppc/machdep.c
252
*bootpath++ = 0;
sys/arch/macppc/macppc/machdep.c
253
while (*bootpath) {
sys/arch/macppc/macppc/machdep.c
254
switch (*bootpath++) {
sys/arch/macppc/macppc/machdep.c
275
bootpath = &bootpathbuf[0];
sys/arch/macppc/macppc/machdep.c
276
parseofwbp(bootpath);
sys/arch/macppc/stand/hfs.c
43
char bootpath[128], *cp;
sys/arch/macppc/stand/hfs.c
47
bzero(bootpath, sizeof bootpath);
sys/arch/macppc/stand/hfs.c
48
OF_getprop(chosen, "bootpath", bootpath, sizeof bootpath);
sys/arch/macppc/stand/hfs.c
50
cp = strrchr(bootpath, ',');
sys/arch/macppc/stand/hfs.c
54
strlcpy(cp + 1, path, bootpath + sizeof bootpath - (cp + 1));
sys/arch/macppc/stand/hfs.c
55
OF_fd = OF_open(bootpath);
sys/arch/powerpc/include/cpu.h
203
extern char *bootpath;
sys/arch/sparc64/include/autoconf.h
147
struct bootpath *bootpath_store(int, struct bootpath *);
sys/arch/sparc64/sparc64/autoconf.c
131
struct bootpath bootpath[16];
sys/arch/sparc64/sparc64/autoconf.c
1335
struct bootpath *bp = bootpath_store(0, NULL);
sys/arch/sparc64/sparc64/autoconf.c
135
static void bootpath_print(struct bootpath *);
sys/arch/sparc64/sparc64/autoconf.c
136
void bootpath_nodes(struct bootpath *, int);
sys/arch/sparc64/sparc64/autoconf.c
140
void nail_bootdev(struct device *, struct bootpath *);
sys/arch/sparc64/sparc64/autoconf.c
1491
nail_bootdev(struct device *dev, struct bootpath *bp)
sys/arch/sparc64/sparc64/autoconf.c
443
bootpath_nodes(struct bootpath *bp, int nbp)
sys/arch/sparc64/sparc64/autoconf.c
489
register struct bootpath *bp;
sys/arch/sparc64/sparc64/autoconf.c
493
bzero((void *)bootpath, sizeof(bootpath));
sys/arch/sparc64/sparc64/autoconf.c
494
bp = bootpath;
sys/arch/sparc64/sparc64/autoconf.c
535
bootpath_nodes(bootpath, nbootpath);
sys/arch/sparc64/sparc64/autoconf.c
599
bootpath_print(struct bootpath *bp)
sys/arch/sparc64/sparc64/autoconf.c
621
struct bootpath *
sys/arch/sparc64/sparc64/autoconf.c
622
bootpath_store(int storep, struct bootpath *bp)
sys/arch/sparc64/sparc64/autoconf.c
624
static struct bootpath *save;
sys/arch/sparc64/sparc64/autoconf.c
625
struct bootpath *retval;
sys/arch/sparc64/sparc64/autoconf.c
790
struct bootpath *bp;
sys/arch/sparc64/sparc64/autoconf.c
793
bootpath_print(bootpath);
sys/arch/sparc64/sparc64/autoconf.c
795
bp = nbootpath == 0 ? NULL : &bootpath[nbootpath-1];
sys/arch/sparc64/sparc64/autoconf.c
954
bootpath_store(1, bootpath);