The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / fs / cramfs / 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))