commit | 39f367c77fb4a2c77e707d4a7f6b965791e7a43e | [log] [tgz] |
---|---|---|
author | Namjae Jeon <linkinjeon@kernel.org> | Wed Jun 16 18:29:16 2021 +0900 |
committer | GitHub <noreply@github.com> | Wed Jun 16 18:29:16 2021 +0900 |
tree | 6b26b0fd9448be3a1bada5a886c357b867d16121 | |
parent | f104dcf4fe05fb2b0fbe5d6db41eaa16ff4cba80 [diff] | |
parent | 19b7087397c76fe1432193c0830e91c6838ccf7f [diff] |
Merge pull request #25 from AmadeusGhost/exfat-next exfat: fix build on x86 with 4.19 kernel
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