From 5d61034626a30384543ba0892d798e9e836760cb Mon Sep 17 00:00:00 2001 From: openoms <43343391+openoms@users.noreply.github.com> Date: Wed, 4 Dec 2024 16:12:58 +0100 Subject: [PATCH] arm64 base image update to 2024-11-19-raspios-bookworm-arm64 (#4854) * arm64 base image update to 2024-11-19-raspios-bookworm-arm64 * no network restart on raspberrypi --- CHANGES.md | 1 + build_sdcard.sh | 4 +++- ci/arm64-rpi/build.arm64-rpi.pkr.hcl | 4 ++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 4d6089909..0102f819f 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -2,6 +2,7 @@ Features: +- Update: RaspberryOS arm64 base image 2024-11-19 (Debian 12 Bookworm) [details](https://downloads.raspberrypi.com/raspios_full_arm64/release_notes.txt) - Update: amd64 base image: debian-12.8.0-amd64-netinst.iso [details](https://www.debian.org/releases/stable/amd64/release-notes/ch-whats-new.en.html) - Update: Specter Desktop 2.0.5 [details](https://github.com/cryptoadvance/specter-desktop/releases/tag/v2.0.5) - Update: Fulcrum Electrum server v1.11.1 (CLI install script with status menu) [details](https://github.com/cculianu/Fulcrum/releases/tag/v1.11.1) diff --git a/build_sdcard.sh b/build_sdcard.sh index 32f2e3986..cfa30ff9a 100644 --- a/build_sdcard.sh +++ b/build_sdcard.sh @@ -329,7 +329,9 @@ isDebianInHosts=$(grep -c "debian" /etc/hosts) if [ ${isDebianInHosts} -eq 0 ]; then echo "# Adding debian to /etc/hosts" echo "127.0.1.1 debian" | tee -a /etc/hosts > /dev/null - systemctl restart networking + if [ "${baseimage}" != "raspios_arm64" ]; then + systemctl restart networking + fi fi echo "*** Remove unnecessary packages ***" diff --git a/ci/arm64-rpi/build.arm64-rpi.pkr.hcl b/ci/arm64-rpi/build.arm64-rpi.pkr.hcl index 7fea76898..0477fa71e 100644 --- a/ci/arm64-rpi/build.arm64-rpi.pkr.hcl +++ b/ci/arm64-rpi/build.arm64-rpi.pkr.hcl @@ -1,8 +1,8 @@ variable "pack" { default = "lean" } variable "github_user" { default = "raspiblitz" } variable "branch" { default = "dev" } -variable "image_link" { default = "https://downloads.raspberrypi.org/raspios_arm64/images/raspios_arm64-2024-03-15/2024-03-15-raspios-bookworm-arm64.img.xz" } -variable "image_checksum" { default = "7e53a46aab92051d523d7283c080532bebb52ce86758629bf1951be9b4b0560f" } +variable "image_link" { default = "https://downloads.raspberrypi.org/raspios_arm64/images/raspios_arm64-2024-11-19/2024-11-19-raspios-bookworm-arm64.img.xz" } +variable "image_checksum" { default = "ea6e68c48d14c3d78af5471c0b288bbf6522fdd775241f74d8295d106d344300" } variable "image_size" { default = "24G" } source "arm" "raspiblitz-arm64-rpi" {