mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-06 18:09:44 +03:00
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>
20 lines
431 B
Makefile
20 lines
431 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)/bin/mkcramfs $(CRAMFS_OPTS) $(TARGET_DIR) $@
|
|
endef
|
|
|
|
ROOTFS_CRAMFS_DEPENDENCIES = host-cramfs
|
|
|
|
$(eval $(rootfs))
|