From a51b4ec94d93f1874fa4b6981d4bb8cb5d125b48 Mon Sep 17 00:00:00 2001 From: Tomasz Maciej Nowak Date: Mon, 10 Feb 2020 16:33:25 +0100 Subject: [PATCH] mvebu: image: rework uDPU-firmware recipe Tar has ability to change current dir, so use that instead additional command invocation. Also being here, change tar arguments to make final archive reproducible. Cc: Scott Roberts Signed-off-by: Tomasz Maciej Nowak --- target/linux/mvebu/image/Makefile | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/target/linux/mvebu/image/Makefile b/target/linux/mvebu/image/Makefile index d73f3e20fc..024e77969a 100644 --- a/target/linux/mvebu/image/Makefile +++ b/target/linux/mvebu/image/Makefile @@ -70,9 +70,15 @@ define Build/uDPU-firmware (rm -fR $@-fw; mkdir -p $@-fw) $(CP) $(BIN_DIR)/$(IMAGE_PREFIX)-initramfs.itb $@-fw/recovery.itb $(CP) $@-boot.scr $@-fw/boot.scr - (cd $(TARGET_DIR); $(TAR) -cvzf $@-fw/rootfs.tgz .) - (cd $@.boot; $(TAR) -cvzf $@-fw/boot.tgz .) - (cd $@-fw; $(TAR) -cvzf $(KDIR_TMP)/$(IMAGE_PREFIX)-firmware.tgz .) + $(TAR) -cvzp --numeric-owner --owner=0 --group=0 --sort=name \ + $(if $(SOURCE_DATE_EPOCH),--mtime="@$(SOURCE_DATE_EPOCH)") \ + -f $@-fw/rootfs.tgz -C $(TARGET_DIR) . + $(TAR) -cvzp --numeric-owner --owner=0 --group=0 --sort=name \ + $(if $(SOURCE_DATE_EPOCH),--mtime="@$(SOURCE_DATE_EPOCH)") \ + -f $@-fw/boot.tgz -C $@.boot . + $(TAR) -cvzp --numeric-owner --owner=0 --group=0 --sort=name \ + $(if $(SOURCE_DATE_EPOCH),--mtime="@$(SOURCE_DATE_EPOCH)") \ + -f $(KDIR_TMP)/$(IMAGE_PREFIX)-firmware.tgz -C $@-fw . endef define Device/Default -- 2.30.2