commit | bed6b023a135dcecd07cfac21ccfa4ef7b3ef7b6 | [log] [tgz] |
---|---|---|
author | Namjae Jeon <linkinjeon@kernel.org> | Mon Oct 17 16:35:31 2022 +0900 |
committer | Namjae Jeon <linkinjeon@kernel.org> | Mon Oct 17 16:37:31 2022 +0900 |
tree | 8eea0c315d3f695ca256d33ca981051dbd0295ae | |
parent | 03aa12a9fdba0ba94e6c18386d203471a5f23514 [diff] |
exfat: release 6.0.0 version This version number is sync with linux mainline. Major changes are: - Use updated exfat_chain directly instead of snapshot values in rename. - fix the error code of rename syscall. - cleanup and suppress the superfluous error messages. - remove duplicate directory entry update. - fix integer overflow on large partition. Signed-off-by: Namjae Jeon <linkinjeon@kernel.org>
This is the exfat filesystem for support from the linux 4.1 kernel to the latest kernel.
Install prerequisite package for Fedora, RHEL:
yum install kernel-devel-$(uname -r)
Build step:
make sudo make install
To load the driver manually, run this as root:
modprobe exfat
cd [linux] cp -ar exfat [linux]/fs/
source "fs/fat/Kconfig" +source "fs/exfat/Kconfig" source "fs/ntfs/Kconfig"
obj-$(CONFIG_FAT_FS) += fat/ +obj-$(CONFIG_EXFAT_FS) += exfat/ obj-$(CONFIG_BFS_FS) += bfs/
File systems ---> DOS/FAT/NT Filesystems ---> <M> exFAT filesystem support (utf8) Default iocharset for exFAT
build your kernel