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>
15 lines
435 B
Makefile
15 lines
435 B
Makefile
################################################################################
|
|
#
|
|
# tar to archive target filesystem
|
|
#
|
|
################################################################################
|
|
|
|
TAR_OPTS := $(call qstrip,$(BR2_TARGET_ROOTFS_TAR_OPTIONS))
|
|
|
|
define ROOTFS_TAR_CMD
|
|
(cd $(TARGET_DIR); find -print0 | LC_ALL=C sort -z | \
|
|
tar $(TAR_OPTS) -cf $@ --null --no-recursion -T - --numeric-owner)
|
|
endef
|
|
|
|
$(eval $(rootfs))
|