commit | 7161f35736e6c45f16339462ddff45bcfcba38c0 | [log] [tgz] |
---|---|---|
author | Koushik Dutta <koushd@gmail.com> | Sun Feb 27 17:00:47 2011 -0800 |
committer | Koushik Dutta <koushd@gmail.com> | Sun Feb 27 17:00:47 2011 -0800 |
tree | a068ecd5b75f239c4495b9527daaa2e8ce8d5913 | |
parent | 33e37f3e5d15cc604c7b2f9334af9775126d549b [diff] [blame] |
specify a type on the mount. Change-Id: I610330e2971aaf235e0420fa7d4387e4f55b0015
diff --git a/roots.c b/roots.c index fae7faa..8320061 100644 --- a/roots.c +++ b/roots.c
@@ -126,7 +126,7 @@ } 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)