blob: e0ac65ff9e5e9992796a0f55bd0b250b38ae938d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
################################################################################
#
# Build the romfs root filesystem image
#
################################################################################
ROMFS_TARGET = $(IMAGE).romfs
ROOTFS_ROMFS_DEPENDENCIES = host-genromfs
define ROOTFS_ROMFS_CMD
$(HOST_DIR)/usr/bin/genromfs -d $(TARGET_DIR) -f $@
endef
$(eval $(call ROOTFS_TARGET,romfs))
|