Home | History | Annotate | Download | only in bootxx

Lines Matching refs:bootpath

319 	char bootpath[128];
327 if (OF_getprop(chosen, "bootpath", bootpath, sizeof(bootpath)) == 1) {
329 * buggy firmware doesn't set bootpath...
332 OF_getprop(options, "boot-device", bootpath, sizeof(bootpath));
341 for (i = 0; i < sizeof(bootpath); i++) {
342 if (bootpath[i] == ':')
343 bootpath[i] = 0;
344 if (bootpath[i] == 0)
348 putstr("\r\nOF_open bootpath=");
349 putstrn(bootpath, i);
350 fd = OF_open(bootpath);