14 lines
348 B
Makefile
14 lines
348 B
Makefile
################################################################################
|
|
#
|
|
# Build the romfs root filesystem image
|
|
#
|
|
################################################################################
|
|
|
|
ROOTFS_ROMFS_DEPENDENCIES = host-genromfs
|
|
|
|
define ROOTFS_ROMFS_CMD
|
|
$(HOST_DIR)/bin/genromfs -d $(TARGET_DIR) -f $@
|
|
endef
|
|
|
|
$(eval $(rootfs))
|