03f18925a0
Probably a leftover from our last fs infra reworking a couple of years ago. Incidentally, also added a newline at the end of the file. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
14 lines
370 B
Makefile
14 lines
370 B
Makefile
################################################################################
|
|
#
|
|
# Build the romfs root filesystem image
|
|
#
|
|
################################################################################
|
|
|
|
ROOTFS_ROMFS_DEPENDENCIES = host-genromfs
|
|
|
|
define ROOTFS_ROMFS_CMD
|
|
$(HOST_DIR)/usr/bin/genromfs -d $(TARGET_DIR) -f $@
|
|
endef
|
|
|
|
$(eval $(call ROOTFS_TARGET,romfs))
|