Changes in uspace/app/init/init.c [6afc9d7:dc2d582] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/init/init.c
r6afc9d7 rdc2d582 126 126 opts = "restore"; 127 127 128 int rc = vfs_mount(fstype, ROOT_MOUNT_POINT, ROOT_DEVICE, opts,128 int rc = mount(fstype, ROOT_MOUNT_POINT, ROOT_DEVICE, opts, 129 129 IPC_FLAG_BLOCKING, 0); 130 130 return mount_report("Root filesystem", ROOT_MOUNT_POINT, fstype, … … 143 143 static bool mount_locfs(void) 144 144 { 145 int rc = vfs_mount(LOCFS_FS_TYPE, LOCFS_MOUNT_POINT, "", "",145 int rc = mount(LOCFS_FS_TYPE, LOCFS_MOUNT_POINT, "", "", 146 146 IPC_FLAG_BLOCKING, 0); 147 147 return mount_report("Location service filesystem", LOCFS_MOUNT_POINT, … … 152 152 { 153 153 struct stat s; 154 if (stat(path, &s) != 0) {154 if (stat(path, &s) == ENOENT) { 155 155 printf("%s: Unable to stat %s\n", NAME, path); 156 156 return ENOENT; … … 299 299 static bool mount_tmpfs(void) 300 300 { 301 int rc = vfs_mount(TMPFS_FS_TYPE, TMPFS_MOUNT_POINT, "", "", 0, 0);301 int rc = mount(TMPFS_FS_TYPE, TMPFS_MOUNT_POINT, "", "", 0, 0); 302 302 return mount_report("Temporary filesystem", TMPFS_MOUNT_POINT, 303 303 TMPFS_FS_TYPE, NULL, rc); … … 337 337 srv_start("/srv/s3c24xx_ts"); 338 338 339 srv_start("/srv/vbd"); 340 srv_start("/srv/volsrv"); 341 339 342 srv_start("/srv/loopip"); 340 343 srv_start("/srv/ethip");
Note:
See TracChangeset
for help on using the changeset viewer.