sdk-hwV1.3/lichee/linux-4.9/fs/exfat
梁志勇 09427e37ea chore(other):sdk 裁减 2024-05-07 18:09:20 +08:00
..
Kconfig chore(other):sdk 裁减 2024-05-07 18:09:20 +08:00
Makefile chore(other):sdk 裁减 2024-05-07 18:09:20 +08:00
README.md chore(other):sdk 裁减 2024-05-07 18:09:20 +08:00
balloc.c chore(other):sdk 裁减 2024-05-07 18:09:20 +08:00
cache.c chore(other):sdk 裁减 2024-05-07 18:09:20 +08:00
dir.c chore(other):sdk 裁减 2024-05-07 18:09:20 +08:00
exfat_fs.h chore(other):sdk 裁减 2024-05-07 18:09:20 +08:00
exfat_raw.h chore(other):sdk 裁减 2024-05-07 18:09:20 +08:00
fatent.c chore(other):sdk 裁减 2024-05-07 18:09:20 +08:00
file.c chore(other):sdk 裁减 2024-05-07 18:09:20 +08:00
inode.c chore(other):sdk 裁减 2024-05-07 18:09:20 +08:00
misc.c chore(other):sdk 裁减 2024-05-07 18:09:20 +08:00
namei.c chore(other):sdk 裁减 2024-05-07 18:09:20 +08:00
nls.c chore(other):sdk 裁减 2024-05-07 18:09:20 +08:00
super.c chore(other):sdk 裁减 2024-05-07 18:09:20 +08:00

README.md

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