summaryrefslogtreecommitdiffstats
path: root/fs/Makefile
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2012-11-30 12:24:40 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2012-12-03 11:23:25 +0100
commitac6e464cb29e83c02c9e39a4b78a819d82b4f06b (patch)
treeaec9f65186c89aaf33e103c5e7d0b2402ea0c8ef /fs/Makefile
parentd2dc3640ef3d058a921270ae64e06f9889d80684 (diff)
downloadbarebox-ac6e464cb29e83c02c9e39a4b78a819d82b4f06b.tar.gz
barebox-ac6e464cb29e83c02c9e39a4b78a819d82b4f06b.tar.xz
fs: implement initial ext4 support from U-Boot
The ext4 implementation has been taken from U-Boot with some changes: - No global variables to allow for multiple filesystems to be mounted and multiple files to be open. - remove fs internal link following and use the barebox link implementation. - remove write support. This is incomplete in U-Boot, so I decided to skip this for now. 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 ad745d904a..cc59da766b 100644
--- a/fs/Makefile
+++ b/fs/Makefile
@@ -1,4 +1,5 @@
obj-$(CONFIG_FS_CRAMFS) += cramfs/
+obj-$(CONFIG_FS_EXT4) += ext4/
obj-$(CONFIG_FS_RAMFS) += ramfs.o
obj-y += devfs-core.o
obj-$(CONFIG_FS_DEVFS) += devfs.o