mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 12:45:42 +00:00
9eefe2a2b3
The U-Boot UBIFS implementation is largely a direct copy from the current Linux version (2.6.29-rc6). As already done in the UBI version we have an "abstraction layer" to redefine or remove some OS calls (e.g. mutex_lock() ...). This makes it possible to use the original Linux code with very little changes. And by this we can better update to later Linux versions. I removed some of the Linux features that are not used in the U-Boot version (e.g. garbage-collection, write support). Signed-off-by: Stefan Roese <sr@denx.de> CC: Artem Bityutskiy <dedekind@infradead.org> CC: Adrian Hunter <ext-Adrian.Hunter@nokia.com>
38 lines
1.2 KiB
Makefile
38 lines
1.2 KiB
Makefile
#
|
|
# (C) Copyright 2000-2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# See file CREDITS for list of people who contributed to this
|
|
# project.
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License as
|
|
# published by the Free Software Foundation; either version 2 of
|
|
# the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
# MA 02111-1307 USA
|
|
#
|
|
#
|
|
|
|
subdirs-$(CONFIG_CMD_CRAMFS) := cramfs
|
|
subdirs-$(CONFIG_CMD_EXT2) += ext2
|
|
subdirs-$(CONFIG_CMD_FAT) += fat
|
|
subdirs-$(CONFIG_CMD_FDOS) += fdos
|
|
subdirs-$(CONFIG_CMD_JFFS2) += jffs2
|
|
subdirs-$(CONFIG_CMD_REISER) += reiserfs
|
|
subdirs-$(CONFIG_YAFFS2) += yaffs2
|
|
subdirs-$(CONFIG_CMD_UBIFS) += ubifs
|
|
|
|
SUBDIRS := $(subdirs-y)
|
|
|
|
$(obj).depend all:
|
|
@for dir in $(SUBDIRS) ; do \
|
|
$(MAKE) -C $$dir $@ ; done
|