0c29b4281d
- Fix CVE-2022-29973: relan exFAT 1.3.0 allows local users to obtain
sensitive information (data from deleted files in the filesystem) in
certain situations involving offsets beyond ValidDataLength.
- libfuse3 is supported since
7cbc1544a4
https://github.com/relan/exfat/releases/tag/v1.4.0
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
20 lines
571 B
Makefile
20 lines
571 B
Makefile
################################################################################
|
|
#
|
|
# exfat
|
|
#
|
|
################################################################################
|
|
|
|
EXFAT_VERSION = 1.4.0
|
|
EXFAT_SITE = https://github.com/relan/exfat/releases/download/v$(EXFAT_VERSION)
|
|
EXFAT_SOURCE = fuse-exfat-$(EXFAT_VERSION).tar.gz
|
|
EXFAT_DEPENDENCIES = \
|
|
$(if $(BR2_PACKAGE_LIBFUSE3),libfuse3,libfuse) \
|
|
host-pkgconf
|
|
EXFAT_LICENSE = GPL-2.0+
|
|
EXFAT_LICENSE_FILES = COPYING
|
|
EXFAT_CPE_ID_VENDOR = exfat_project
|
|
|
|
EXFAT_CONF_OPTS += --exec-prefix=/
|
|
|
|
$(eval $(autotools-package))
|