Add exfat kernel module package (#699)

Thank you 

Co-authored-by: Viktor <viktorxda@users.noreply.github.com>
pull/705/head
viktorxda 2023-03-31 16:12:30 +02:00 committed by GitHub
parent 442e5423ab
commit a050f6d2a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 31 additions and 2 deletions

View File

@ -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"

View File

@ -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

View File

@ -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

View File

@ -0,0 +1 @@
../../general/package/exfat-openipc

View File

@ -1,5 +1,6 @@
f2fs
vfat
exfat
# For XM530 SD cards
# sdio0_sd
# sdio0_sd

View File

@ -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

View File

@ -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))