747237290f5011bf4b7fc0de7ede205b2016688f
[packages/trusty/cirros-testvm.git] / cramfs.mk
1 ################################################################################
2 #
3 # Build the cramfs root filesystem image
4 #
5 ################################################################################
6
7 ifeq ($(BR2_ENDIAN),"BIG")
8 CRAMFS_OPTS = -b
9 else
10 CRAMFS_OPTS = -l
11 endif
12
13 define ROOTFS_CRAMFS_CMD
14         $(HOST_DIR)/usr/bin/mkcramfs $(CRAMFS_OPTS) $(TARGET_DIR) $@
15 endef
16
17 ROOTFS_CRAMFS_DEPENDENCIES = host-cramfs
18
19 $(eval $(call ROOTFS_TARGET,cramfs))