mirror of https://github.com/OpenIPC/firmware.git
Add exfat kernel module package (#699)
Thank you Co-authored-by: Viktor <viktorxda@users.noreply.github.com>pull/705/head
parent
442e5423ab
commit
a050f6d2a6
|
@ -4,6 +4,7 @@ source "$BR2_EXTERNAL_SIGMASTAR_PATH/package/aura-httpd/Config.in"
|
|||
source "$BR2_EXTERNAL_SIGMASTAR_PATH/package/baresip-openipc/Config.in"
|
||||
source "$BR2_EXTERNAL_SIGMASTAR_PATH/package/comgt/Config.in"
|
||||
source "$BR2_EXTERNAL_SIGMASTAR_PATH/package/dropbear-openipc/Config.in"
|
||||
source "$BR2_EXTERNAL_SIGMASTAR_PATH/package/exfat-openipc/Config.in"
|
||||
source "$BR2_EXTERNAL_SIGMASTAR_PATH/package/fdk-aac-openipc/Config.in"
|
||||
source "$BR2_EXTERNAL_SIGMASTAR_PATH/package/ffmpeg-openipc/Config.in"
|
||||
source "$BR2_EXTERNAL_SIGMASTAR_PATH/package/fwprintenv-openipc/Config.in"
|
||||
|
|
|
@ -260,7 +260,7 @@ CONFIG_MODULE_UNLOAD=y
|
|||
# CONFIG_TRIM_UNUSED_KSYMS is not set
|
||||
CONFIG_MODULES_TREE_LOOKUP=y
|
||||
CONFIG_BLOCK=y
|
||||
# CONFIG_LBDAF is not set
|
||||
CONFIG_LBDAF=y
|
||||
# CONFIG_BLK_DEV_BSG is not set
|
||||
# CONFIG_BLK_DEV_BSGLIB is not set
|
||||
# CONFIG_BLK_DEV_INTEGRITY is not set
|
||||
|
|
|
@ -78,6 +78,8 @@ BR2_PACKAGE_SIGMASTAR_OSDRV_INFINITY6E=y
|
|||
BR2_PACKAGE_SIGMASTAR_OSDRV_SENSOR="imx415"
|
||||
BR2_PACKAGE_DOSFSTOOLS=y
|
||||
BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT=y
|
||||
BR2_PACKAGE_EXFAT_OPENIPC=y
|
||||
BR2_PACKAGE_EXFATPROGS=y
|
||||
# BR2_PACKAGE_SSHPASS is not set
|
||||
BR2_PACKAGE_UACME_OPENIPC=y
|
||||
BR2_PACKAGE_VTUND_OPENIPC=y
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
../../general/package/exfat-openipc
|
|
@ -1,5 +1,6 @@
|
|||
f2fs
|
||||
vfat
|
||||
exfat
|
||||
|
||||
# For XM530 SD cards
|
||||
# sdio0_sd
|
||||
# sdio0_sd
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
config BR2_PACKAGE_EXFAT_OPENIPC
|
||||
bool "exfat-openipc"
|
||||
help
|
||||
exFAT kernel module
|
||||
|
||||
comment "exFAT needs a Linux kernel to be built"
|
||||
depends on !BR2_LINUX_KERNEL
|
|
@ -0,0 +1,17 @@
|
|||
################################################################################
|
||||
#
|
||||
# exfat-openipc
|
||||
#
|
||||
################################################################################
|
||||
|
||||
EXFAT_OPENIPC_VERSION = 7f592ba5718e3e757cd0edd2d934fe2fe87f7d61
|
||||
EXFAT_OPENIPC_SITE = $(call github,namjaejeon,linux-exfat-oot,$(EXFAT_OPENIPC_VERSION))
|
||||
EXFAT_OPENIPC_LICENSE = GPL-2.0
|
||||
EXFAT_OPENIPC_LICENSE_FILES = COPYING
|
||||
|
||||
EXFAT_OPENIPC_MODULE_MAKE_OPTS = \
|
||||
CONFIG_EXFAT_FS=m \
|
||||
KDIR=$(LINUX_DIR)
|
||||
|
||||
$(eval $(kernel-module))
|
||||
$(eval $(generic-package))
|
Loading…
Reference in New Issue