blob: d72388ebf2f5419cb76ab9f6c9c1d05210f00d4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#############################################################
#
# Build the squashfs root filesystem image
#
#############################################################
ROOTFS_SQUASHFS_DEPENDENCIES = host-squashfs
define ROOTFS_SQUASHFS_CMD
$(HOST_DIR)/usr/bin/mksquashfs $(TARGET_DIR) $$@ -noappend
endef
$(eval $(call ROOTFS_TARGET,squashfs))
|