commit | 2a0023bc28e080f2317a4eb293cf28c3126948de | [log] [tgz] |
---|---|---|
author | HiGarfield <HiGarfield@126.com> | Sat Jul 15 23:11:12 2023 +0800 |
committer | Namjae Jeon <linkinjeon@kernel.org> | Sun Jul 16 23:58:02 2023 +0900 |
tree | d617d815ec305c794328cfab1f585446f78bc463 | |
parent | 803d7143748976653baf72be77420234d6aba4e4 [diff] |
exfat: add necessary header for vmalloc This fixes building on Linux 4.4. Signed-off-by: HiGarfield <higarfield@126.com> 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