mirror of
https://github.com/raspberrypi/rpi-eeprom.git
synced 2026-01-21 06:13:33 +08:00
Merge branch 'master' into debian/bullseye
This commit is contained in:
BIN
firmware/beta/pieeprom-2021-12-02.bin
Executable file
BIN
firmware/beta/pieeprom-2021-12-02.bin
Executable file
Binary file not shown.
Binary file not shown.
@@ -3,6 +3,14 @@
|
|||||||
USB MSD boot also requires the firmware from Raspberry Pi OS 2020-08-20 or newer.
|
USB MSD boot also requires the firmware from Raspberry Pi OS 2020-08-20 or newer.
|
||||||
https://www.raspberrypi.com/documentation/computers/raspberry-pi.html#raspberry-pi-4-bootloader-configuration
|
https://www.raspberrypi.com/documentation/computers/raspberry-pi.html#raspberry-pi-4-bootloader-configuration
|
||||||
|
|
||||||
|
## 2021-12-02 - Fix MTB detection for factory test - BETA
|
||||||
|
* Just fixes a regression with MTB detection affecting factory testing
|
||||||
|
|
||||||
|
## 2021-12-09 - Update default recovery.bin
|
||||||
|
* Promote the recovery.bin from stable to default. This avoids an issue
|
||||||
|
where recovery.bin fails to load on large FAT32 boot partions with 32K
|
||||||
|
clusters.
|
||||||
|
|
||||||
## 2021-11-29 - Promote the 2021-11-22 beta release to LATEST/STABLE
|
## 2021-11-29 - Promote the 2021-11-22 beta release to LATEST/STABLE
|
||||||
Interesting changes since the last stable release:-
|
Interesting changes since the last stable release:-
|
||||||
* NVMe / PCIe reset fixes
|
* NVMe / PCIe reset fixes
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
OPENSSL=${OPENSSl:-openssl}
|
OPENSSL=${OPENSSL:-openssl}
|
||||||
|
|
||||||
die() {
|
die() {
|
||||||
echo "$@" >&2
|
echo "$@" >&2
|
||||||
@@ -26,12 +26,14 @@ checkDependencies() {
|
|||||||
die "sha256sum not found. Try installing the coreutilities package."
|
die "sha256sum not found. Try installing the coreutilities package."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if ! command -v openssl > /dev/null; then
|
if [ -n "${KEY}" ]; then
|
||||||
die "openssl not found. Try installing the openssl package."
|
if ! command -v ${OPENSSL} > /dev/null; then
|
||||||
fi
|
die "${OPENSSL} not found. Try installing the openssl package."
|
||||||
|
fi
|
||||||
|
|
||||||
if ! command -v xxd > /dev/null; then
|
if ! command -v xxd > /dev/null; then
|
||||||
die "xxd not found. Try installing the xxd package."
|
die "xxd not found. Try installing the xxd package."
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user