b6842c4097
Currently, to register a filesystem, one has to call: $(eval $(call ROOTFS_TARGET,blabla)) This is very unlike the package infrastructure, where the name of the package is automatically guessed by the infra. It turns out that we can now do that for the filesystem infra too. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
28 lines
819 B
Makefile
28 lines
819 B
Makefile
################################################################################
|
|
#
|
|
# Build the squashfs root filesystem image
|
|
#
|
|
################################################################################
|
|
|
|
ROOTFS_SQUASHFS_DEPENDENCIES = host-squashfs
|
|
|
|
ROOTFS_SQUASHFS_ARGS = -noappend -processors $(PARALLEL_JOBS)
|
|
|
|
ifeq ($(BR2_TARGET_ROOTFS_SQUASHFS4_LZ4),y)
|
|
ROOTFS_SQUASHFS_ARGS += -comp lz4 -Xhc
|
|
else ifeq ($(BR2_TARGET_ROOTFS_SQUASHFS4_LZO),y)
|
|
ROOTFS_SQUASHFS_ARGS += -comp lzo
|
|
else ifeq ($(BR2_TARGET_ROOTFS_SQUASHFS4_LZMA),y)
|
|
ROOTFS_SQUASHFS_ARGS += -comp lzma
|
|
else ifeq ($(BR2_TARGET_ROOTFS_SQUASHFS4_XZ),y)
|
|
ROOTFS_SQUASHFS_ARGS += -comp xz
|
|
else
|
|
ROOTFS_SQUASHFS_ARGS += -comp gzip
|
|
endif
|
|
|
|
define ROOTFS_SQUASHFS_CMD
|
|
$(HOST_DIR)/bin/mksquashfs $(TARGET_DIR) $@ $(ROOTFS_SQUASHFS_ARGS)
|
|
endef
|
|
|
|
$(eval $(rootfs))
|