From da4990991008adf6a4a9adfcf248f1aeb28f8aad Mon Sep 17 00:00:00 2001 From: AmadeusGhost <42570690+AmadeusGhost@users.noreply.github.com> Date: Mon, 3 Jan 2022 23:16:28 +0800 Subject: [PATCH] ntfs3-mount: fixes mounting issues Fixes: #8612 --- package/lean/ntfs3-mount/Makefile | 2 +- package/lean/ntfs3-mount/files/mount.ntfs | 2 ++ package/lean/ntfs3-mount/files/mount.ntfs3 | 2 -- 3 files changed, 3 insertions(+), 3 deletions(-) create mode 100755 package/lean/ntfs3-mount/files/mount.ntfs delete mode 100755 package/lean/ntfs3-mount/files/mount.ntfs3 diff --git a/package/lean/ntfs3-mount/Makefile b/package/lean/ntfs3-mount/Makefile index b1a81d4e5..84fe0ed47 100644 --- a/package/lean/ntfs3-mount/Makefile +++ b/package/lean/ntfs3-mount/Makefile @@ -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)) diff --git a/package/lean/ntfs3-mount/files/mount.ntfs b/package/lean/ntfs3-mount/files/mount.ntfs new file mode 100755 index 000000000..68b7a2e68 --- /dev/null +++ b/package/lean/ntfs3-mount/files/mount.ntfs @@ -0,0 +1,2 @@ +#!/bin/sh +mount -t ntfs3 -o iocharset=utf8 "$@" diff --git a/package/lean/ntfs3-mount/files/mount.ntfs3 b/package/lean/ntfs3-mount/files/mount.ntfs3 deleted file mode 100755 index 6a49e4440..000000000 --- a/package/lean/ntfs3-mount/files/mount.ntfs3 +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -mount -t ntfs3 -o nls=utf8 "$@"