diff options
author | Stephen Warren <swarren@nvidia.com> | 2012-10-22 06:43:51 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2012-10-29 14:21:20 -0700 |
commit | 045fa1e1142552799ad3203e9e0bc22a11e866ea (patch) | |
tree | 038b783c8efac14c0caffa128f37b77a48c9f407 /Makefile | |
parent | 03e2ecf6b83e43803f7eed9547d0973b7eb1c8fc (diff) |
fs: add filesystem switch libary, implement ls and fsload commands
Implement "ls" and "fsload" commands that act like {fat,ext2}{ls,load},
and transparently handle either file-system. This scheme could easily be
extended to other filesystem types; I only didn't do it for zfs because
I don't have any filesystems of that type to test with.
Replace the implementation of {fat,ext[24]}{ls,load} with this new code
too.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -260,7 +260,8 @@ LIBS-y += drivers/net/npe/libnpe.o endif LIBS-$(CONFIG_OF_EMBED) += dts/libdts.o LIBS-y += arch/$(ARCH)/lib/lib$(ARCH).o -LIBS-y += fs/cbfs/libcbfs.o \ +LIBS-y += fs/libfs.o \ + fs/cbfs/libcbfs.o \ fs/cramfs/libcramfs.o \ fs/ext4/libext4fs.o \ fs/fat/libfat.o \ |