fs-qntfs: add target dependence (#22)

This commit is contained in:
ElonH 2020-02-13 18:30:13 +08:00 committed by GitHub
parent 9fb2ae20b9
commit e6b0600ad8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,11 +16,14 @@ USE_SRC=$(shell ls ./src/ 2>/dev/null >/dev/null && echo 1)
include $(INCLUDE_DIR)/package.mk
FS_QNTFS_TARGET_DEPENDS=@(TARGET_ar71xx_generic||TARGET_ar71xx_nand||TARGET_ath79_generic||TARGET_ath79_nand||TARGET_ipq40xx_generic||TARGET_ipq806x_generic||TARGET_ramips_mt76x8||TARGET_ramips_mt7620||TARGET_ramips_mt7621)
# TODO: target qualcomm-ipq40xx not found
define KernelPackage/fs-qntfs
SUBMENU:=Filesystems
TITLE:=PandoraBox Quick-NTFS filesystem
FILES:=$(PKG_BUILD_DIR)/qntfs.ko
DEPENDS:=+kmod-nls-cp936 +kmod-nls-utf8 +kmod-nls-cp437 +kmod-nls-iso8859-1
DEPENDS:=$(FS_QNTFS_TARGET_DEPENDS) +kmod-nls-cp936 +kmod-nls-utf8 +kmod-nls-cp437 +kmod-nls-iso8859-1
AUTOLOAD:=$(call AutoLoad,30,qntfs,1)
endef