You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
490 B

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=antfs-mount
  3. PKG_RELEASE:=1
  4. include $(INCLUDE_DIR)/package.mk
  5. define Package/antfs-mount
  6. SECTION:=utils
  7. CATEGORY:=Utilities
  8. SUBMENU:=Filesystem
  9. TITLE:=NTFS mount script for AVM NTFS driver
  10. PKGARCH:=all
  11. DEPENDS:=+kmod-fs-antfs
  12. endef
  13. define Build/Configure
  14. endef
  15. define Build/Compile
  16. endef
  17. define Package/antfs-mount/install
  18. $(INSTALL_DIR) $(1)/sbin
  19. $(INSTALL_BIN) ./files/mount.ntfs $(1)/sbin
  20. endef
  21. $(eval $(call BuildPackage,antfs-mount))