From 8049a80e8edb7f646956ddb115ee18f862733961 Mon Sep 17 00:00:00 2001 From: Andres Salomon Date: Mon, 4 May 2020 18:18:58 -0400 Subject: [PATCH 1/2] Clean up the .xz.sha256 sums that are created during build --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ccf4c42..3c3c290 100644 --- a/Makefile +++ b/Makefile @@ -55,7 +55,7 @@ _clean_images: _clean_xzimages: rm -f raspi_0w.img.xz raspi_2.img.xz raspi_3.img.xz _clean_shasums: - rm -f raspi_0w.sha256 raspi_2.sha256 raspi_3.sha256 + rm -f raspi_0w.sha256 raspi_2.sha256 raspi_3.sha256 raspi_0w.xz.sha256 raspi_2.xz.sha256 raspi_3.xz.sha256 _clean_logs: rm -f raspi_0w.log raspi_2.log raspi_3.log _clean_tarballs: From 7a4a2f2ff0a5256929665bd68117e69b83e356c3 Mon Sep 17 00:00:00 2001 From: Andres Salomon Date: Mon, 4 May 2020 22:34:43 -0400 Subject: [PATCH 2/2] fix minor typo in documentation The images that are created are raspi_3.img, not raspi3.img. Minor, but might as well fix it while I'm here. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e740943..3e1c7a0 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ important parts of your system. Double check it's the correct device!), copy the image onto the SD card: ```shell -sudo dd if=raspi3.img of=/dev/mmcblk0 bs=64k oflag=dsync status=progress +sudo dd if=raspi_3.img of=/dev/mmcblk0 bs=64k oflag=dsync status=progress ``` Then, plug the SD card into the Raspberry Pi, and power it up.