mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-04-29 07:01:01 +02:00
Update to the latest version, and fix build on targets without FS_POSIX_ACL. Signed-off-by: Qingfang Deng <dqfext@gmail.com> Link: https://github.com/openwrt/openwrt/pull/23090 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
53 lines
1.2 KiB
Makefile
53 lines
1.2 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
PKG_NAME:=linux-ntfs
|
|
PKG_RELEASE:=1
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
PKG_SOURCE_DATE:=2026-04-25
|
|
PKG_SOURCE_URL:=https://github.com/namjaejeon/linux-ntfs
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_VERSION:=ce7495f3e5c6a0b85d3350c18bbc06370cdcceb5
|
|
PKG_MIRROR_HASH:=0815623624dae868c3ca0ae82cf57ebf5d19e6b42778e2b9d241f85369fe348f
|
|
|
|
PKG_LICENSE:=GPL-2.0-or-later
|
|
|
|
PKG_MAINTAINER:=Qingfang Deng <dqfext@gmail.com>
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define KernelPackage/fs-ntfs
|
|
SECTION:=kernel
|
|
CATEGORY:=Kernel modules
|
|
SUBMENU:=Filesystems
|
|
TITLE:=NTFS file system support
|
|
DEPENDS:=+kmod-nls-base
|
|
URL:=$(PKG_SOURCE_URL)
|
|
FILES:=$(PKG_BUILD_DIR)/ntfs.ko
|
|
AUTOLOAD:=$(call AutoProbe,ntfs)
|
|
endef
|
|
|
|
define KernelPackage/fs-ntfs/description
|
|
NTFS is the file system of Microsoft Windows NT, 2000, XP and 2003.
|
|
|
|
This allows you to mount devices formatted with the ntfs file system.
|
|
endef
|
|
|
|
NOSTDINC_FLAGS += \
|
|
$(KERNEL_NOSTDINC_FLAGS)
|
|
|
|
EXTRA_KCONFIG:= \
|
|
CONFIG_NTFS_FS=m
|
|
|
|
MAKE_OPTS:= \
|
|
M="$(PKG_BUILD_DIR)" \
|
|
NOSTDINC_FLAGS="$(NOSTDINC_FLAGS)" \
|
|
$(EXTRA_KCONFIG)
|
|
|
|
define Build/Compile
|
|
+$(KERNEL_MAKE) $(PKG_JOBS) $(MAKE_OPTS) modules
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,fs-ntfs))
|