Merge pull request #11154 from dengqf6/antfs

[RFT] antfs: new package
This commit is contained in:
Rosen Penev
2020-03-15 11:53:30 -07:00
committed by GitHub
3 changed files with 74 additions and 0 deletions
+28
View 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
View File
@@ -0,0 +1,2 @@
#!/bin/sh
mount -t antfs "$@"