ntfs3-mount: fixes mounting issues

Fixes: #8612
This commit is contained in:
AmadeusGhost 2022-01-03 23:16:28 +08:00
parent d000d8cb9a
commit da49909910
3 changed files with 3 additions and 3 deletions

View File

@ -22,7 +22,7 @@ endef
define Package/ntfs3-mount/install
$(INSTALL_DIR) $(1)/sbin
$(INSTALL_BIN) ./files/mount.ntfs3 $(1)/sbin
$(INSTALL_BIN) ./files/mount.ntfs $(1)/sbin
endef
$(eval $(call BuildPackage,ntfs3-mount))

View File

@ -0,0 +1,2 @@
#!/bin/sh
mount -t ntfs3 -o iocharset=utf8 "$@"

View File

@ -1,2 +0,0 @@
#!/bin/sh
mount -t ntfs3 -o nls=utf8 "$@"