swrt-gpl/release/linux/bcm/linux-4.4/fs/exfat
2022-04-03 21:22:33 +08:00
..
balloc.c Merge upstream code from https://github.com/SWRT-dev/swrt 2022-04-03 21:22:33 +08:00
cache.c Merge upstream code from https://github.com/SWRT-dev/swrt 2022-04-03 21:22:33 +08:00
dir.c Merge upstream code from https://github.com/SWRT-dev/swrt 2022-04-03 21:22:33 +08:00
exfat_fs.h Merge upstream code from https://github.com/SWRT-dev/swrt 2022-04-03 21:22:33 +08:00
exfat_raw.h Merge upstream code from https://github.com/SWRT-dev/swrt 2022-04-03 21:22:33 +08:00
fatent.c Merge upstream code from https://github.com/SWRT-dev/swrt 2022-04-03 21:22:33 +08:00
file.c Merge upstream code from https://github.com/SWRT-dev/swrt 2022-04-03 21:22:33 +08:00
inode.c Merge upstream code from https://github.com/SWRT-dev/swrt 2022-04-03 21:22:33 +08:00
Kconfig Merge upstream code from https://github.com/SWRT-dev/swrt 2022-03-26 07:54:20 +08:00
Makefile Merge upstream code from https://github.com/SWRT-dev/swrt 2022-03-26 07:54:20 +08:00
misc.c Merge upstream code from https://github.com/SWRT-dev/swrt 2022-04-03 21:22:33 +08:00
namei.c Merge upstream code from https://github.com/SWRT-dev/swrt 2022-04-03 21:22:33 +08:00
nls.c Merge upstream code from https://github.com/SWRT-dev/swrt 2022-04-03 21:22:33 +08:00
README.md Merge upstream code from https://github.com/SWRT-dev/swrt 2022-03-26 07:54:20 +08:00
super.c Merge upstream code from https://github.com/SWRT-dev/swrt 2022-04-03 21:22:33 +08: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