<div class="__aliyun_email_body_block"><div  style="clear:both;"><br ></div><div  style="clear:both;">       Hi, I updated my commit, please check it agagin, thanks a lot!</div><div  style="clear:both;"><br ></div><div  style="clear:both;">       <span  style="font-family:Tahoma,Arial;">This patch can mount ntfs with fuseblk fs type and make the deivces to be</span><br ></div><div  style="clear:both;"><span  style="color:#000000;font-family:Tahoma,Arial;font-size:14.0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400;text-align:start;text-indent:.0px;text-transform:none;widows:2;background-color:#ffffff;text-decoration-style:initial;text-decoration-color:initial;float:none;display:inline;">       mounted writable.</span></div><blockquote  style="margin-right:.0px;margin-top:.0px;margin-bottom:.0px;"><div  style="clear:both;"><span  style="font-family:Tahoma,Arial,STHeiti,SimSun;font-size:14.0px;color:#000000;"><br ></span></div>Signed-off-by: Rosy Song <rosysong@rosinson.com><br >---<br > block.c | 8 +++++++-<br > 1 file changed, 7 insertions(+), 1 deletion(-)<br ><br >diff --git a/block.c b/block.c<br >index 2651c86..b2cd32b 100644<br >--- a/block.c<br >+++ b/block.c<br >@@ -881,7 +881,13 @@ static int handle_mount(const char *source, const char *target,<br >  size_t mount_opts_len;<br >  char *mount_opts = NULL, *ptr;<br > <br >- err = mount(source, target, fstype, m ? m->flags : 0,<br >+ /* Mount ntfs filesystem with ntfs-3g utility */<br >+ if (!strcmp(fstype, "ntfs") &&<br >+     !access("/sbin/mount.ntfs-3g", X_OK)) {<br >+     err = -1;<br >+     errno = ENODEV;<br >+ } else<br >+     err = mount(source, target, fstype, m ? m->flags : 0,<br >              (m && m->options) ? m->options : "");<br > <br >  /* Requested file system type is not available in kernel,<br >-- <br >2.17.0<br ><br ><br >_______________________________________________<br >openwrt-devel mailing list<br >openwrt-devel@lists.openwrt.org<br >https://lists.openwrt.org/mailman/listinfo/openwrt-devel</blockquote><div ><br ></div></div>