commit | 859f93608575d8dd714b84d16f64bf40ee3af26b | [log] [tgz] |
---|---|---|
author | Namjae Jeon <linkinjeon@kernel.org> | Sat Jun 13 08:23:54 2020 +0900 |
committer | Namjae Jeon <linkinjeon@kernel.org> | Sat Jun 13 10:33:17 2020 +0900 |
tree | 7c37fc50d9b3c6f90504532f46cf766bdffd61a8 | |
parent | 7705950daffb2f8d798439636dccc85a52fe7b0d [diff] |
exfat: add exfat version cat /sys/module/exfat/version 5.8.1 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