From afdc83586cdc495c13261f752dd34f6bc63eba8e Mon Sep 17 00:00:00 2001 From: John Davidson Date: Fri, 23 Jul 2021 23:30:13 +0300 Subject: [PATCH] Removed '--x86' due to QUEMU test failure. --- src/10_pack_rootfs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/10_pack_rootfs.sh b/src/10_pack_rootfs.sh index f471dfafa..52fcb6d3f 100755 --- a/src/10_pack_rootfs.sh +++ b/src/10_pack_rootfs.sh @@ -15,7 +15,7 @@ rm -f $WORK_DIR/rootfs.cpio.xz cd $ROOTFS # Packs the current 'initramfs' folder structure in 'cpio.xz' archive. -find . | cpio -R root:root -H newc -o | xz -9 --check=crc32 --x86 > $WORK_DIR/rootfs.cpio.xz +find . | cpio -R root:root -H newc -o | xz -9 --check=crc32 > $WORK_DIR/rootfs.cpio.xz echo "Packing of initramfs has finished."