ntfs3-mount: re-enabled on kernel 5.15

This commit is contained in:
AmadeusGhost 2021-12-26 23:16:40 +08:00
parent 1bf58b7e18
commit e841c2c2cd
4 changed files with 29 additions and 29 deletions

View File

@ -0,0 +1,28 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=ntfs3-mount
PKG_RELEASE:=2
include $(INCLUDE_DIR)/package.mk
define Package/ntfs3-mount
SECTION:=utils
CATEGORY:=Utilities
SUBMENU:=Filesystem
TITLE:=NTFS mount script for Paragon NTFS3 driver
DEPENDS:=+!LINUX_5_15:kmod-fs-ntfs3-oot +LINUX_5_15:kmod-fs-ntfs3
PKGARCH:=all
endef
define Build/Configure
endef
define Build/Compile
endef
define Package/ntfs3-mount/install
$(INSTALL_DIR) $(1)/sbin
$(INSTALL_BIN) ./files/mount.ntfs3 $(1)/sbin
endef
$(eval $(call BuildPackage,ntfs3-mount))

View File

@ -1,28 +0,0 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=ntfs3-oot-mount
PKG_RELEASE:=2
include $(INCLUDE_DIR)/package.mk
define Package/ntfs3-oot-mount
SECTION:=utils
CATEGORY:=Utilities
SUBMENU:=Filesystem
TITLE:=NTFS mount script for Paragon NTFS3 driver
PKGARCH:=all
DEPENDS:=+kmod-fs-ntfs3-oot
endef
define Build/Configure
endef
define Build/Compile
endef
define Package/ntfs3-oot-mount/install
$(INSTALL_DIR) $(1)/sbin
$(INSTALL_BIN) ./files/mount.ntfs3 $(1)/sbin
endef
$(eval $(call BuildPackage,ntfs3-oot-mount))

View File

@ -30,7 +30,7 @@ define KernelPackage/fs-ntfs3-oot
DEPENDS:=@!LINUX_5_15 +kmod-nls-utf8
endef
define KernelPackage/ntfs3-oot/description
define KernelPackage/fs-ntfs3-oot/description
This package provides the kernel module for ntfs3.
endef