exFAT fs driver has been upstreamed as a staging driver since linux 5.4. The package name kmod-fs-exfat is used for that. Three things happened in this commit - The package will only be built for kernel 4.14 and 4.19 - The driver will be available as opkg package "kmod-fs-exfat0". "kmod-fs-exfat" is to be used for the one in upstream kernel - Mark "kmod-fs-exfat0" as deprecated in package title Signed-off-by: Paul Blazejowski <paulb at blazebox.homeip.net> Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com> (rename, rewording, and deprecation)
51 lines
1.2 KiB
Makefile
51 lines
1.2 KiB
Makefile
#
|
|
# Copyright (C) 2014 Bruno Randolf <br1@einfach.org>
|
|
# Copyright (C) 2019 Yousong Zhou <yszhou4tech@gmail.com>
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
PKG_NAME:=exfat-nofuse
|
|
PKG_RELEASE:=2
|
|
|
|
PKG_SOURCE_URL:=https://github.com/dorimanx/exfat-nofuse.git
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_DATE:=2018-04-17
|
|
PKG_SOURCE_VERSION:=01c30ad52625a7261e1b0d874553b6ca7af25966
|
|
PKG_MIRROR_HASH:=47e3b6b8384e4beaa07dc762f4e0cce9a067750cbb4b2fb4ba18d2348038c270
|
|
|
|
PKG_MAINTAINER:=Yousong Zhou <yszhou4tech@gmail.com>
|
|
PKG_LICENSE:=GPL-2.0
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define KernelPackage/fs-exfat0
|
|
SUBMENU:=Filesystems
|
|
TITLE:=ExFAT Kernel driver (deprecated)
|
|
FILES:=$(PKG_BUILD_DIR)/exfat.ko
|
|
AUTOLOAD:=$(call AutoLoad,30,exfat,1)
|
|
DEPENDS:=+kmod-nls-base @(LINUX_4_14||LINUX_4_19)
|
|
endef
|
|
|
|
define KernelPackage/fs-exfat0/description
|
|
Kernel module for ExFAT Filesytems
|
|
endef
|
|
|
|
MAKE_OPTS:= \
|
|
ARCH="$(LINUX_KARCH)" \
|
|
CROSS_COMPILE="$(TARGET_CROSS)" \
|
|
M="$(PKG_BUILD_DIR)"
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C "$(LINUX_DIR)" \
|
|
$(MAKE_OPTS) \
|
|
CONFIG_EXFAT_FS=m \
|
|
modules
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,fs-exfat0))
|