summaryrefslogtreecommitdiffstats
path: root/fs/Makefile
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2011-03-14 15:29:09 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2011-04-12 09:54:56 +0200
commit17e91068b17d0b85cce9cc1d000da51d59c7f0f8 (patch)
treee15f04bc76964d6d63dd753f1e29afae9533d1aa /fs/Makefile
parent9faae796bec41daa79b9f7227eade0d9c5ff1260 (diff)
downloadbarebox-17e91068b17d0b85cce9cc1d000da51d59c7f0f8.tar.gz
barebox-17e91068b17d0b85cce9cc1d000da51d59c7f0f8.tar.xz
fs: add fat filesystem support
This code is based on: http://elm-chan.org/fsw/ff/00index_e.html FatFs Generic FAT File System Module This patch offers a read/write implementation for barebox. The code does not exaclty match barebox coding style, but works nicely and should be ready to give it a try. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'fs/Makefile')
-rw-r--r--fs/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/Makefile b/fs/Makefile
index 4aa92ef0d6..7cae2b6e3a 100644
--- a/fs/Makefile
+++ b/fs/Makefile
@@ -2,4 +2,5 @@ obj-$(CONFIG_FS_CRAMFS) += cramfs/
obj-$(CONFIG_FS_RAMFS) += ramfs.o
obj-y += devfs-core.o
obj-$(CONFIG_FS_DEVFS) += devfs.o
+obj-$(CONFIG_FS_FAT) += fat/
obj-y += fs.o