commit | 461d45b45c18a4686cb446639b325fb4054f7efc | [log] [tgz] |
---|---|---|
author | Tetsuhiro Kohada <kohada.t2@gmail.com> | Sun May 31 21:01:35 2020 +0900 |
committer | Namjae Jeon <namjae.jeon@samsung.com> | Thu Jun 04 15:42:38 2020 +0900 |
tree | 6550bf25002f4e74e1c9bf5fcd544b7bc4fd564e | |
parent | 9f140e2c22b309af99a2cde3fa3307fb0bd16a83 [diff] |
exfat: redefine PBR as boot_sector Aggregate PBR related definitions and redefine as boot_sector to comply with the exFAT specification. And, rename variable names including 'pbr'. Signed-off-by: Tetsuhiro Kohada <kohada.t2@gmail.com> Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com>
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