From 2e6a29ab0d706ed67543f8c42e6ce450034cb3d8 Mon Sep 17 00:00:00 2001 From: Michael McMahon Date: Wed, 24 Aug 2022 01:48:36 -0400 Subject: [PATCH] Changing txt file output to match xz compression. (#4107) --- lib/general.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/general.sh b/lib/general.sh index fc5721b87b..1e61e0db54 100644 --- a/lib/general.sh +++ b/lib/general.sh @@ -679,15 +679,15 @@ fingerprint_image() CPU configuration: $CPUMIN - $CPUMAX with $GOVERNOR -------------------------------------------------------------------------------- Verify GPG signature: - gpg --verify $2.img.asc + gpg --verify $2.img.xz.asc Verify image file integrity: - sha256sum --check $2.img.sha + sha256sum --check $2.img.xz.sha - Prepare SD card (four methodes): - zcat $2.img.gz | pv | dd of=/dev/mmcblkX bs=1M + Prepare SD card (four methods): + xzcat $2.img.xz | pv | dd of=/dev/mmcblkX bs=1M dd if=$2.img of=/dev/mmcblkX bs=1M - balena-etcher $2.img.gz -d /dev/mmcblkX + balena-etcher $2.img.xz -d /dev/mmcblkX balena-etcher $2.img -d /dev/mmcblkX EOF fi