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>
31 lines
778 B
Makefile
31 lines
778 B
Makefile
################################################################################
|
|
#
|
|
# Build the ubifs root filesystem image
|
|
#
|
|
################################################################################
|
|
|
|
UBIFS_OPTS = \
|
|
-e $(BR2_TARGET_ROOTFS_UBIFS_LEBSIZE) \
|
|
-c $(BR2_TARGET_ROOTFS_UBIFS_MAXLEBCNT) \
|
|
-m $(BR2_TARGET_ROOTFS_UBIFS_MINIOSIZE)
|
|
|
|
ifeq ($(BR2_TARGET_ROOTFS_UBIFS_RT_ZLIB),y)
|
|
UBIFS_OPTS += -x zlib
|
|
endif
|
|
ifeq ($(BR2_TARGET_ROOTFS_UBIFS_RT_LZO),y)
|
|
UBIFS_OPTS += -x lzo
|
|
endif
|
|
ifeq ($(BR2_TARGET_ROOTFS_UBIFS_RT_NONE),y)
|
|
UBIFS_OPTS += -x none
|
|
endif
|
|
|
|
UBIFS_OPTS += $(call qstrip,$(BR2_TARGET_ROOTFS_UBIFS_OPTS))
|
|
|
|
ROOTFS_UBIFS_DEPENDENCIES = host-mtd
|
|
|
|
define ROOTFS_UBIFS_CMD
|
|
$(HOST_DIR)/sbin/mkfs.ubifs -d $(TARGET_DIR) $(UBIFS_OPTS) -o $@
|
|
endef
|
|
|
|
$(eval $(rootfs))
|