commit | 6eb9af0626759d340afd146a7c0941975edd4eea | [log] [tgz] |
---|---|---|
author | Jeff Layton <jlayton@kernel.org> | Thu Nov 02 23:03:27 2023 +0900 |
committer | Namjae Jeon <linkinjeon@kernel.org> | Thu Nov 02 23:03:57 2023 +0900 |
tree | fb042f471e7ff629c5a037c1b732d6d48678f4a6 | |
parent | 98f36315064b54bf79e5db44839b800a6eccbb98 [diff] |
exfat: ensure that ctime is updated whenever the mtime is When removing entries from a directory, the ctime must also be updated alongside the mtime. Signed-off-by: Jeff Layton <jlayton@kernel.org> Message-Id: <20230705190309.579783-4-jlayton@kernel.org> Signed-off-by: Christian Brauner <brauner@kernel.org> 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