Merge branch 'master' into debian/bullseye

This commit is contained in:
Serge Schneider
2021-12-10 14:23:50 +00:00
4 changed files with 16 additions and 6 deletions

Binary file not shown.

Binary file not shown.

View File

@@ -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

View File

@@ -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
} }