HomeSort by: relevance | last modified time | path
    Searched refs:rootpath (Results 1 - 25 of 25) sorted by relevancy

  /src/sys/arch/ia64/stand/common/
dev_net.c 120 error = nfs_mount(netdev_sock, rootip, rootpath);
129 printf("root addr=%s path=%s\n", inet_ntoa(rootip), rootpath);
258 if (bp_getfile(sock, "root", &rootip, rootpath)) {
264 * If present, strip the server's address off of the rootpath
268 for (i = 0; i < FNAME_SIZE && rootpath[i] != '\0'; i++)
269 if (rootpath[i] == ':')
271 if (i && i != FNAME_SIZE && rootpath[i] == ':') {
272 rootpath[i++] = '\0';
273 if (inet_addr(&rootpath[0]) != INADDR_NONE)
274 rootip.s_addr = inet_addr(&rootpath[0])
    [all...]
  /src/sys/lib/libsa/
globals.c 20 char rootpath[FNAME_SIZE]; /* root mount path */ variable in typeref:typename:char[]
dev_net.c 118 error = nfs_mount(netdev_sock, rootip, rootpath);
271 if (bp_getfile(sock, "root", &rootip, rootpath)) {
279 printf("server path: %s\n", rootpath);
bootp.c 269 if (rootpath[0] != '\0')
270 printf("server path: %s\n", rootpath);
393 if (tag == TAG_ROOTPATH && size < sizeof(rootpath)) {
394 strncpy(rootpath, (char *)cp, sizeof(rootpath));
395 rootpath[size] = '\0';
net.h 94 extern char rootpath[FNAME_SIZE];
nfs.c 609 if (nfs_mount(*((int *)(f->f_devdata)), rootip, rootpath))
  /src/sys/stand/efiboot/
devopen.c 41 else if (rootpath[0] != '\0')
dev_net.c 72 if (rootpath[0] != '\0')
73 printf("boot: server path: %s\n", rootpath);
78 if (rootpath[0] != '\0') {
79 error = nfs_mount(net_socket, rootip, rootpath);
  /src/sys/arch/hp300/stand/common/
netio.c 206 memset(rootpath, 0, sizeof(rootpath));
207 kgets(rootpath, sizeof(rootpath));
208 if (rootpath[0] == '\0' || rootpath[0] == '\n')
242 if (bp_getfile(netdev_sock, "root", &rootip, rootpath))
254 printf("root addr=%s path=%s\n", inet_ntoa(rootip), rootpath);
258 if (nfs_mount(netdev_sock, rootip, rootpath))
  /src/sys/arch/evbarm/stand/boot2440/
dev_net.c 83 rootip and rootpath with those
99 strncpy(rootpath, c, (filename-c));
100 rootpath[(filename-c)] = '\0';
101 printf("Root path: %s\n", rootpath);
115 && (nfs_mount(netdev_sock, rootip, rootpath) != 0)) {
  /src/sys/arch/sparc/stand/ofwboot/
net.c 131 *rootpath = '\0';
147 if (bp_getfile(netdev_sock, "root", &rootip, rootpath))
230 printf(" root addr=%s\n path=%s\n", inet_ntoa(rootip), rootpath);
233 if (nfs_mount(netdev_sock, rootip, rootpath) != 0)
  /src/sys/arch/newsmips/stand/boot/
net.c 135 if (bp_getfile(netdev_sock, "root", &rootip, rootpath))
154 printf("root addr=%s path=%s\n", inet_ntoa(rootip), rootpath);
157 if (nfs_mount(netdev_sock, rootip, rootpath) != 0)
  /src/sys/arch/sparc/stand/common/
net.c 124 if (bp_getfile(netdev_sock, "root", &rootip, rootpath))
177 printf("root addr=%s path=%s\n", inet_ntoa(rootip), rootpath);
180 if (nfs_mount(netdev_sock, rootip, rootpath) != 0)
  /src/sys/arch/vax/boot/boot/
netio.c 156 if (bp_getfile(0, "root", &rootip, rootpath))
160 printf("root addr=%s path=%s\n", inet_ntoa(rootip), rootpath);
164 r = nfs_mount(0, rootip, rootpath);
  /src/sys/arch/macppc/stand/ofwboot/
net.c 151 printf("root addr=%s path=%s\n", inet_ntoa(rootip), rootpath);
156 if (nfs_mount(netdev_sock, rootip, rootpath) < 0)
  /src/sys/arch/ofppc/stand/ofwboot/
net.c 152 printf("root addr=%s path=%s\n", inet_ntoa(rootip), rootpath);
157 if (nfs_mount(netdev_sock, rootip, rootpath) < 0)
  /src/sys/arch/shark/stand/ofwboot/
net.c 148 printf("root addr=%s path=%s\n", inet_ntoa(rootip), rootpath);
153 if (nfs_mount(netdev_sock, rootip, rootpath) < 0)
  /src/sys/arch/alpha/stand/netboot/
dev_net.c 118 error = nfs_mount(netdev_sock, rootip, rootpath);
224 if (bp_getfile(sock, "root", &rootip, rootpath)) {
231 printf("boot: server path: %s\n", rootpath);
  /src/sys/arch/evbmips/stand/sbmips/netboot/
dev_net.c 118 error = nfs_mount(netdev_sock, rootip, rootpath);
224 if (bp_getfile(sock, "root", &rootip, rootpath)) {
231 printf("boot: server path: %s\n", rootpath);
  /src/usr.sbin/puffs/mount_psshfs/
fs.c 93 char *rootpath; local in function:psshfs_handshake
126 /* scope out our rootpath */
140 if (psbuf_get_str(pb, &rootpath, NULL) == -1)
141 reterr((stderr, "invalid realpath response: rootpath"), EPROTO);
145 psbuf_req_str(pb, SSH_FXP_LSTAT, NEXTREQ(pctx), rootpath);
153 reterr((stderr, "couldn't stat rootpath"), rv);
157 reterr((stderr, "remote path (%s) not a directory", rootpath),
167 po_root->po_path = rootpath;
168 po_root->po_len = strlen(rootpath);
  /src/sys/arch/i386/stand/efiboot/
dev_net.c 243 if (bp_getfile(sock, "root", &rootip, rootpath)) {
251 printf("server path: %s\n", rootpath);
  /src/sys/arch/sandpoint/stand/altboot/
dev_net.c 83 && (error = nfs_mount(netdev_sock, rootip, rootpath)) != 0)
  /src/sys/nfs/
nfs_bootdhcp.c 703 char *rootpath; local in function:bootp_extract
715 mydomain = myname = rootpath = NULL;
777 printf("nfs_boot: rootpath >= %d bytes\n",
781 rootpath = p;
891 if (rootpath &&
896 rootpath, rootpathlen);
  /src/sys/arch/next68k/stand/boot/
en.c 485 if (myip.s_addr == 0 || rootip.s_addr == 0 || rootpath[0] == '\0')
489 printf("root addr=%s path=%s\n", inet_ntoa(rootip), rootpath);
492 if (nfs_mount(sock, rootip, rootpath) < 0)
  /src/lib/librumphijack/
hijack.c 1114 static const char *rootpath = "/"; variable in typeref:typename:const char *
1123 rv = rootpath;

Completed in 29 milliseconds