1 ################################################################################
3 # tar to archive target filesystem
5 ################################################################################
7 TAR_OPTS
:= $(call qstrip
,$(BR2_TARGET_ROOTFS_TAR_OPTIONS
))
10 (cd
$(TARGET_DIR
); find
-print0 | LC_ALL
=C
sort -z | \
11 tar $(TAR_OPTS
) -cf
$@
--null
--no-recursion
-T
- --numeric-owner
)
14 $(eval
$(call ROOTFS_TARGET
,tar))