Changeset 80743a1 in mainline for uspace/app/sysinst/sysinst.c


Ignore:
Timestamp:
2017-04-01T06:49:10Z (7 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade
Children:
b19e892
Parents:
6e5562a
Message:

Rename (un)mount to vfs_(un)mount_path

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/sysinst/sysinst.c

    r6e5562a r80743a1  
    179179
    180180        printf("sysinst_fs_mount(): mount filesystem\n");
    181         rc = mount(FS_TYPE, MOUNT_POINT, dev, "", 0, 0);
     181        rc = vfs_mount_path(MOUNT_POINT, FS_TYPE, dev, "", 0, 0);
    182182        if (rc != EOK)
    183183                return rc;
     
    218218
    219219        printf("sysinst_copy_boot_files(): mount CD filesystem\n");
    220         rc = mount(CD_FS_TYPE, CD_MOUNT_POINT, CD_DEV, "", 0, 0);
     220        rc = vfs_mount_path(CD_MOUNT_POINT, CD_FS_TYPE, CD_DEV, "", 0, 0);
    221221        if (rc != EOK)
    222222                return rc;
     
    228228
    229229        printf("sysinst_copy_boot_files(): unmount %s\n", MOUNT_POINT);
    230         rc = unmount(MOUNT_POINT);
     230        rc = vfs_unmount_path(MOUNT_POINT);
    231231        if (rc != EOK)
    232232                return rc;
Note: See TracChangeset for help on using the changeset viewer.