14 lines
382 B
Makefile
14 lines
382 B
Makefile
|
################################################################################
|
||
|
#
|
||
|
# 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))
|