We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f75f5e commit 097cca6Copy full SHA for 097cca6
installer/pi-download-image.sh
@@ -1,17 +1,15 @@
1
#!/bin/bash
2
set -e
3
-
4
mkdir data
5
# 25.04 is not yet ready due to mt7915e, r8125 driver bugs
6
-# 24.10 is needed for cm5 support
7
-VERSION="24.10"
8
-IMG="ubuntu-${VERSION}-beta-preinstalled-server-arm64+raspi.img.xz"
+VERSION="24.04.3"
+IMG="ubuntu-{$VERSION}-preinstalled-server-arm64+raspi.img.xz"
9
10
cd ./data
11
12
if [ ! -f $IMG ]; then
13
#temp until 25.04 fixes drivers for r8125, mt7915
14
- wget -q "https://old-releases.ubuntu.com/releases/oracular/${IMG}"
+ wget -q "https://cdimage.ubuntu.com/releases/${VERSION}/release/${IMG}
15
fi
16
17
xzcat $IMG > spr.clean.img
0 commit comments