diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2013-10-17 11:38:53 (GMT) |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-10-31 17:26:44 (GMT) |
commit | e82004bc68cba738b316897bd7a31191ab19f04f (patch) | |
tree | e7985506ad97bad5b28205c3b39d4c2bfa6a83af /fs | |
parent | 9c3f0bc5eec6a660927e9f3ab5408d6b3e6e43ae (diff) | |
download | u-boot-e82004bc68cba738b316897bd7a31191ab19f04f.tar.xz |
fs: move some file system to fs/Makefile
This commit moves some subdirectories of fs
from the toplevel Makefile to fs/Makefile
using Kbuild descending feature.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/fs/Makefile b/fs/Makefile index ea2eb09..bdcd746 100644 --- a/fs/Makefile +++ b/fs/Makefile @@ -7,3 +7,14 @@ # obj-y += fs.o + +obj-y += cbfs/ +obj-y += cramfs/ +obj-y += ext4/ +obj-y += fdos/ +obj-y += jffs2/ +obj-y += reiserfs/ +obj-y += sandbox/ +obj-y += ubifs/ +obj-y += yaffs2/ +obj-y += zfs/ |