ccd96a3559
Cramfs still passes the device table to mkcramfs, which is irrelevant now with fakeroot, remove this behaviour and the associated patch. Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
19 lines
415 B
Makefile
19 lines
415 B
Makefile
#############################################################
|
|
#
|
|
# Build the cramfs root filesystem image
|
|
#
|
|
#############################################################
|
|
ifeq ($(BR2_ENDIAN),"BIG")
|
|
CRAMFS_OPTS=-b
|
|
else
|
|
CRAMFS_OPTS=-l
|
|
endif
|
|
|
|
define ROOTFS_CRAMFS_CMD
|
|
$(HOST_DIR)/usr/bin/mkcramfs -q $(CRAMFS_OPTS) $(TARGET_DIR) $$@
|
|
endef
|
|
|
|
ROOTFS_CRAMFS_DEPENDENCIES = host-cramfs
|
|
|
|
$(eval $(call ROOTFS_TARGET,cramfs))
|