Commit 6b1ca27b authored by Will Wagner's avatar Will Wagner Committed by Thomas Petazzoni
Browse files

yaffs2: new filesystem type



[Thomas: remove BR2_TARGET_ROOTFS_YAFFS_PATH option, rename to yaffs2
instead of yaffs.]

Signed-off-by: default avatarWill Wagner <willw@carallon.com>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent f27831ae
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -11,5 +11,6 @@ source "fs/romfs/Config.in"
source "fs/squashfs/Config.in"
source "fs/tar/Config.in"
source "fs/ubifs/Config.in"
source "fs/yaffs2/Config.in"

endmenu

fs/yaffs2/Config.in

0 → 100644
+4 −0
Original line number Diff line number Diff line
config BR2_TARGET_ROOTFS_YAFFS2
	bool "yaffs2 root filesystem"
	help
	  Build a yaffs2 root filesystem

fs/yaffs2/yaffs.mk

0 → 100644
+13 −0
Original line number Diff line number Diff line
################################################################################
#
# Build the yaffs2 root filesystem image
#
################################################################################

ROOTFS_YAFFS2_DEPENDENCIES = host-yaffs2utils

define ROOTFS_YAFFS2_CMD
	$(HOST_DIR)/usr/bin/mkyaffs2 --all-root $(TARGET_DIR) $@
endef

$(eval $(call ROOTFS_TARGET,yaffs2))