mirror of
https://github.com/openwrt/packages.git
synced 2026-04-15 19:02:09 +00:00
antfs-mount: mount script for antfs
block-mount needs "mount.ntfs" script to mount NTFS drives Signed-off-by: DENG Qingfang <dengqf6@mail2.sysu.edu.cn>
This commit is contained in:
28
utils/antfs-mount/Makefile
Normal file
28
utils/antfs-mount/Makefile
Normal file
@@ -0,0 +1,28 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=antfs-mount
|
||||
PKG_RELEASE:=1
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/antfs-mount
|
||||
SECTION:=utils
|
||||
CATEGORY:=Utilities
|
||||
SUBMENU:=Filesystem
|
||||
TITLE:=NTFS mount script for AVM NTFS driver
|
||||
PKGARCH:=all
|
||||
DEPENDS:=+kmod-fs-antfs
|
||||
endef
|
||||
|
||||
define Build/Configure
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
endef
|
||||
|
||||
define Package/antfs-mount/install
|
||||
$(INSTALL_DIR) $(1)/sbin
|
||||
$(INSTALL_BIN) ./files/mount.ntfs $(1)/sbin
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,antfs-mount))
|
||||
2
utils/antfs-mount/files/mount.ntfs
Normal file
2
utils/antfs-mount/files/mount.ntfs
Normal file
@@ -0,0 +1,2 @@
|
||||
#!/bin/sh
|
||||
mount -t antfs "$@"
|
||||
Reference in New Issue
Block a user