specify a type on the mount.
Change-Id: I610330e2971aaf235e0420fa7d4387e4f55b0015
This commit is contained in:
parent
33e37f3e5d
commit
7161f35736
2
roots.c
2
roots.c
@ -126,7 +126,7 @@ int try_mount(const char* device, const char* mount_point, const char* fs_type,
|
||||
}
|
||||
else {
|
||||
char mount_cmd[PATH_MAX];
|
||||
sprintf(mount_cmd, "mount -o%s %s %s", fs_options, device, mount_point);
|
||||
sprintf(mount_cmd, "mount -t %s -o%s %s %s", fs_type, fs_options, device, mount_point);
|
||||
ret = __system(mount_cmd);
|
||||
}
|
||||
if (ret == 0)
|
||||
|
Loading…
Reference in New Issue
Block a user