Skip to content
Snippets Groups Projects
Commit e82004bc authored by Masahiro Yamada's avatar Masahiro Yamada Committed by Tom Rini
Browse files

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: default avatarMasahiro Yamada <yamada.m@jp.panasonic.com>
Acked-by: default avatarSimon Glass <sjg@chromium.org>
parent 9c3f0bc5
Branches
Tags
No related merge requests found
...@@ -248,17 +248,7 @@ endif ...@@ -248,17 +248,7 @@ endif
LIBS-$(CONFIG_OF_EMBED) += dts/libdts.o LIBS-$(CONFIG_OF_EMBED) += dts/libdts.o
LIBS-y += arch/$(ARCH)/lib/lib$(ARCH).o LIBS-y += arch/$(ARCH)/lib/lib$(ARCH).o
LIBS-y += fs/libfs.o \ LIBS-y += fs/libfs.o \
fs/cbfs/libcbfs.o \ fs/fat/libfat.o
fs/cramfs/libcramfs.o \
fs/ext4/libext4fs.o \
fs/fat/libfat.o \
fs/fdos/libfdos.o \
fs/jffs2/libjffs2.o \
fs/reiserfs/libreiserfs.o \
fs/sandbox/libsandboxfs.o \
fs/ubifs/libubifs.o \
fs/yaffs2/libyaffs2.o \
fs/zfs/libzfs.o
LIBS-y += net/libnet.o LIBS-y += net/libnet.o
LIBS-y += disk/libdisk.o LIBS-y += disk/libdisk.o
LIBS-y += drivers/libdrivers.o LIBS-y += drivers/libdrivers.o
......
...@@ -7,3 +7,14 @@ ...@@ -7,3 +7,14 @@
# #
obj-y += fs.o 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/
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment