Lines Matching refs:rootpath
171 setenv("boot.nfsroot.path", rootpath, 1);
315 if (bp_getfile(sock, "root", &rootip, rootpath)) {
326 printf("net_open: server path: %s\n", rootpath);
362 * Strip the server's address off of the rootpath if present and return it in
363 * network byte order, leaving just the pathname part in the global rootpath.
371 for (i = 0; rootpath[i] != '\0' && i < FNAME_SIZE; i++)
372 if (rootpath[i] == ':')
374 if (i && i != FNAME_SIZE && rootpath[i] == ':') {
375 rootpath[i++] = '\0';
376 addr = inet_addr(&rootpath[0]);
377 bcopy(&rootpath[i], rootpath, strlen(&rootpath[i])+1);