From e841c2c2cd7a785732f3293348f5929994d781b5 Mon Sep 17 00:00:00 2001 From: AmadeusGhost <42570690+AmadeusGhost@users.noreply.github.com> Date: Sun, 26 Dec 2021 23:16:40 +0800 Subject: [PATCH] ntfs3-mount: re-enabled on kernel 5.15 --- package/lean/ntfs3-mount/Makefile | 28 +++++++++++++++++++ .../files/mount.ntfs3 | 0 package/lean/ntfs3-oot-mount/Makefile | 28 ------------------- package/lean/ntfs3-oot/Makefile | 2 +- 4 files changed, 29 insertions(+), 29 deletions(-) create mode 100644 package/lean/ntfs3-mount/Makefile rename package/lean/{ntfs3-oot-mount => ntfs3-mount}/files/mount.ntfs3 (100%) delete mode 100644 package/lean/ntfs3-oot-mount/Makefile diff --git a/package/lean/ntfs3-mount/Makefile b/package/lean/ntfs3-mount/Makefile new file mode 100644 index 000000000..b1a81d4e5 --- /dev/null +++ b/package/lean/ntfs3-mount/Makefile @@ -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)) diff --git a/package/lean/ntfs3-oot-mount/files/mount.ntfs3 b/package/lean/ntfs3-mount/files/mount.ntfs3 similarity index 100% rename from package/lean/ntfs3-oot-mount/files/mount.ntfs3 rename to package/lean/ntfs3-mount/files/mount.ntfs3 diff --git a/package/lean/ntfs3-oot-mount/Makefile b/package/lean/ntfs3-oot-mount/Makefile deleted file mode 100644 index ba4823b34..000000000 --- a/package/lean/ntfs3-oot-mount/Makefile +++ /dev/null @@ -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)) diff --git a/package/lean/ntfs3-oot/Makefile b/package/lean/ntfs3-oot/Makefile index 44806167f..be3b1827b 100644 --- a/package/lean/ntfs3-oot/Makefile +++ b/package/lean/ntfs3-oot/Makefile @@ -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