Kernel Tree For Xiaomi 11 Lite NE 5G
Go to file
Namjae Jeon a9ac0a3eb4 exfat: fix incorrect update of stream entry in __exfat_truncate()
At truncate, there is a problem of incorrect updating in the file entry
pointer instead of stream entry. This will cause the problem of
overwriting the time field of the file entry to new_size. This patch
change entry pointer with stream entry.

Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com>
2020-06-04 15:42:57 +09:00
.travis_cmd_wrapper.pl exfat: add travis-CI build and test support 2020-02-03 22:43:47 +09:00
.travis_get_mainline_kernel exfat: add travis-CI build and test support 2020-02-03 22:43:47 +09:00
.travis.yml exfat: use renamed repo in travis script 2020-05-31 20:48:47 +09:00
balloc.c exfat: Unify access to the boot sector 2020-04-06 14:11:45 +09:00
cache.c exfat: initial commit 2020-02-03 21:47:19 +09:00
dir.c exfat: standardize checksum calculation 2020-06-04 15:42:47 +09:00
exfat_fs.h exfat: standardize checksum calculation 2020-06-04 15:42:47 +09:00
exfat_raw.h exfat: separate the boot sector analysis 2020-06-04 15:42:41 +09:00
fatent.c exfat: Use a more common logging style 2020-04-06 12:50:48 +09:00
file.c exfat: fix incorrect update of stream entry in __exfat_truncate() 2020-06-04 15:42:57 +09:00
inode.c exfat: optimize dir-cache 2020-06-04 15:42:34 +09:00
Kconfig exfat: initial commit 2020-02-03 21:47:19 +09:00
Makefile exfat: linux 4.16 kernel build support 2020-02-04 09:18:10 +09:00
misc.c exfat: standardize checksum calculation 2020-06-04 15:42:47 +09:00
namei.c exfat: optimize dir-cache 2020-06-04 15:42:34 +09:00
nls.c exfat: remove unnecessary reassignment for p_uniname->name_len 2020-06-04 15:42:53 +09:00
README.md exfat: fix typo 2020-02-10 21:35:58 +09:00
super.c exfat: add the dummy mount options to be backward compatible with staging/exfat 2020-06-04 15:42:50 +09:00

exFAT filesystem

This is the exfat filesystem for support from the linux 4.1 kernel to the latest kernel.

Installing as a stand-alone module

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

Installing as a part of the kernel

  1. Let's take [linux] as the path to your kernel source dir.
	cd [linux]
	cp -ar exfat [linux]/fs/
  1. edit [linux]/fs/Kconfig
	source "fs/fat/Kconfig"
	+source "fs/exfat/Kconfig"
	source "fs/ntfs/Kconfig"
  1. edit [linux]/fs/Makefile
	obj-$(CONFIG_FAT_FS)          += fat/
	+obj-$(CONFIG_EXFAT_FS)       += exfat/
	obj-$(CONFIG_BFS_FS)          += bfs/
  1. make menuconfig and set exfat
	File systems  --->
		DOS/FAT/NT Filesystems  --->
			<M> exFAT filesystem support
			(utf8) Default iocharset for exFAT

build your kernel