build-boot-rpi: Retry firmware download a few times
This commit is contained in:
parent
7f9b164b89
commit
b0824d9361
|
|
@ -30,7 +30,10 @@ fi
|
|||
|
||||
# Download Raspberry Pi boot files
|
||||
FIRMWARE="https://github.com/raspberrypi/firmware/raw/stable"
|
||||
wget -nv "${FIRMWARE}/boot/fixup.dat" \
|
||||
wget --tries 3 \
|
||||
--retry-on-http-error 500,502,503,504 \
|
||||
--no-verbose \
|
||||
"${FIRMWARE}/boot/fixup.dat" \
|
||||
"${FIRMWARE}/boot/fixup_x.dat" \
|
||||
"${FIRMWARE}/boot/fixup_cd.dat" \
|
||||
"${FIRMWARE}/boot/fixup_db.dat" \
|
||||
|
|
|
|||
Loading…
Reference in New Issue