ASR_BASE
Change-Id: Icf3719cc0afe3eeb3edc7fa80a2eb5199ca9dda1
diff --git a/package/system/fstools/patches/030-support-ntfs-auto-mount.patch b/package/system/fstools/patches/030-support-ntfs-auto-mount.patch
new file mode 100644
index 0000000..c132a00
--- /dev/null
+++ b/package/system/fstools/patches/030-support-ntfs-auto-mount.patch
@@ -0,0 +1,14 @@
+--- a/block.c
++++ b/block.c
+@@ -871,7 +871,10 @@ static int exec_mount(const char *source
+ int err, status, pfds[2];
+ char errmsg[128], cmd[sizeof("/sbin/mount.XXXXXXXXXXXXXXXX\0")];
+
+- snprintf(cmd, sizeof(cmd), "/sbin/mount.%s", fstype);
++ if (!strcmp(fstype, "ntfs"))
++ snprintf(cmd, sizeof(cmd), "/sbin/mount.%s", "ntfs-3g");
++ else
++ snprintf(cmd, sizeof(cmd), "/sbin/mount.%s", fstype);
+
+ if (stat(cmd, &s) < 0 || !S_ISREG(s.st_mode) || !(s.st_mode & S_IXUSR)) {
+ ULOG_ERR("No \"mount.%s\" utility available\n", fstype);