We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3451a0b + a26014c commit 7510804Copy full SHA for 7510804
1 file changed
scripts/apu_fw_updater_opnsense.sh
@@ -17,10 +17,10 @@
17
TYPE="apu2"
18
19
# Version of firmware
20
-VERSION="4.15.0.3"
+VERSION="4.19.0.1"
21
22
# Do not edit after this line
23
-SRC="https://3mdeb.com/open-source-firmware/pcengines/${TYPE}/"
+SRC="https://dl.3mdeb.com/open-source-firmware/pcengines/${TYPE}/"
24
PREFIX="${TYPE}_v${VERSION}"
25
FILE="${PREFIX}.rom"
26
CHECKSUM="${PREFIX}.SHA256"
@@ -61,10 +61,10 @@ download () {
61
log "Downloading files ..."
62
63
log_sub "- ${FILE}"
64
- curl -sS "${SRC}${FILE}" -o "${FILE}"
+ curl -sSL "${SRC}${FILE}" -o "${FILE}"
65
66
log_sub "- ${CHECKSUM}"
67
- curl -sS "${SRC}${CHECKSUM}" -o "${CHECKSUM}"
+ curl -sSL "${SRC}${CHECKSUM}" -o "${CHECKSUM}"
68
69
verify
70
0 commit comments