diff options
author | Sascha Hauer <s.hauer@pengutronix.de> | 2013-07-23 22:58:00 +0200 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2013-08-07 08:44:48 +0200 |
commit | 551b412b16fa5e22d040cc49cd97cac1cc8029fc (patch) | |
tree | cef72eb2d5379865f26864267caaf00b85020e13 /fs/Makefile | |
parent | 50e8902c0ef0154c707377238473b4d917507e4b (diff) | |
download | barebox-551b412b16fa5e22d040cc49cd97cac1cc8029fc.tar.gz |
fs: Add ubifs support
This adds ubifs support from u-boot-2013.07. This is taken
mostly as-is, only the necessary adjustments to attach to the
barebox fs layer have been made.
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'fs/Makefile')
-rw-r--r-- | fs/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/Makefile b/fs/Makefile index cc59da766b..bd02d94267 100644 --- a/fs/Makefile +++ b/fs/Makefile @@ -5,6 +5,7 @@ obj-y += devfs-core.o obj-$(CONFIG_FS_DEVFS) += devfs.o obj-$(CONFIG_FS_FAT) += fat/ obj-y += fs.o +obj-$(CONFIG_FS_UBIFS) += ubifs/ obj-$(CONFIG_FS_TFTP) += tftp.o obj-$(CONFIG_FS_OMAP4_USBBOOT) += omap4_usbbootfs.o obj-$(CONFIG_FS_NFS) += nfs.o |