exfat: release 5.19.1 version Major changes are: - fix referencing wrong parent directory information during rename. - introduce a sys_tz mount option to use system timezone. - improve performance while zeroing a cluster with dirsync mount option. - fix slab-out-bounds in exat_clear_bitmap() reported from syzbot. - Add keep_last_dots mount option to allow access to paths with trailing dots. - Avoid repetitive volume dirty bit set/clear to improve storage life time. - Fix ->i_blocks truncation issue that still exists elsewhere. - 4 cleanups & typos fixes. - Move super block magic number to magic.h - Fix missing REQ_SYNC in exfat_update_bhs(). - Fix ->i_blocks truncation issue caused by wrong 32bit mask. Conflicts: fs/exfat/Kconfig fs/exfat/Makefile fs/exfat/balloc.c fs/exfat/cache.c fs/exfat/dir.c fs/exfat/exfat_fs.h fs/exfat/exfat_raw.h fs/exfat/fatent.c fs/exfat/file.c fs/exfat/inode.c fs/exfat/misc.c fs/exfat/namei.c fs/exfat/nls.c fs/exfat/super.c Change-Id: I5fd39768b9fb0419602fc77153de39291e6a1f1d
41 lines
830 B
Makefile
41 lines
830 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
#
|
|
# Makefile for the linux exFAT filesystem support.
|
|
#
|
|
ifneq ($(KERNELRELEASE),)
|
|
obj-$(CONFIG_EXFAT_FS) += exfat.o
|
|
|
|
exfat-y := inode.o namei.o dir.o super.o fatent.o cache.o nls.o misc.o \
|
|
file.o balloc.o
|
|
else
|
|
# Called from external kernel module build
|
|
|
|
KERNELRELEASE ?= $(shell uname -r)
|
|
KDIR ?= /lib/modules/${KERNELRELEASE}/build
|
|
MDIR ?= /lib/modules/${KERNELRELEASE}
|
|
PWD := $(shell pwd)
|
|
|
|
export CONFIG_EXFAT_FS := m
|
|
|
|
all:
|
|
$(MAKE) -C $(KDIR) M=$(PWD) modules
|
|
|
|
clean:
|
|
$(MAKE) -C $(KDIR) M=$(PWD) clean
|
|
|
|
help:
|
|
$(MAKE) -C $(KDIR) M=$(PWD) help
|
|
|
|
install: exfat.ko
|
|
rm -f ${MDIR}/kernel/fs/exfat/exfat.ko
|
|
install -m644 -b -D exfat.ko ${MDIR}/kernel/fs/exfat/exfat.ko
|
|
depmod -aq
|
|
|
|
uninstall:
|
|
rm -rf ${MDIR}/kernel/fs/exfat
|
|
depmod -aq
|
|
|
|
endif
|
|
|
|
.PHONY : all clean install uninstall
|