Changeset 5126f80 in mainline for uspace/app/init/init.c
- Timestamp:
- 2017-03-08T11:42:17Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0d35511
- Parents:
- a737667e
- git-author:
- Jiri Zarevucky <zarevucky.jiri@…> (2017-03-08 11:42:17)
- git-committer:
- Jakub Jermar <jakub@…> (2017-03-08 11:42:17)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/init/init.c
ra737667e r5126f80 127 127 opts = "restore"; 128 128 129 int rc = vfs_mount(fstype, ROOT_MOUNT_POINT, ROOT_DEVICE, opts,129 int rc = mount(fstype, ROOT_MOUNT_POINT, ROOT_DEVICE, opts, 130 130 IPC_FLAG_BLOCKING, 0); 131 131 return mount_report("Root filesystem", ROOT_MOUNT_POINT, fstype, … … 144 144 static bool mount_locfs(void) 145 145 { 146 int rc = vfs_mount(LOCFS_FS_TYPE, LOCFS_MOUNT_POINT, "", "",146 int rc = mount(LOCFS_FS_TYPE, LOCFS_MOUNT_POINT, "", "", 147 147 IPC_FLAG_BLOCKING, 0); 148 148 return mount_report("Location service filesystem", LOCFS_MOUNT_POINT, … … 300 300 static bool mount_tmpfs(void) 301 301 { 302 int rc = vfs_mount(TMPFS_FS_TYPE, TMPFS_MOUNT_POINT, "", "", 0, 0);302 int rc = mount(TMPFS_FS_TYPE, TMPFS_MOUNT_POINT, "", "", 0, 0); 303 303 return mount_report("Temporary filesystem", TMPFS_MOUNT_POINT, 304 304 TMPFS_FS_TYPE, NULL, rc);
Note:
See TracChangeset
for help on using the changeset viewer.