Merge branch 'master' into debian/buster

This commit is contained in:
Serge Schneider
2020-09-03 18:43:10 +01:00
4 changed files with 9 additions and 1 deletions

Binary file not shown.

Binary file not shown.

View File

@@ -3,6 +3,14 @@
USB MSD boot also requires updated beta GPU firmware. Please read USB MSD boot also requires updated beta GPU firmware. Please read
https://www.raspberrypi.org/documentation/hardware/raspberrypi/bcm2711_bootloader_config.md https://www.raspberrypi.org/documentation/hardware/raspberrypi/bcm2711_bootloader_config.md
## 2020-09-02 Only use green LED for error status in bootloader
* Turn the green LED on and leave it on unless an error code occurs.
Previously, SD activity was displayed but that plus muxing with the
SPI CS made the LED activity confusing.
The HDMI diagnostics screen now provides much better information
for determing if the bootloader is running or frozen.
* CM4 enable GPIO for SD power.
## 2020-08-31 Disable self-update from SD card - BETA ## 2020-08-31 Disable self-update from SD card - BETA
* Since the ROM will load recovery.bin from the SD card self update is not * Since the ROM will load recovery.bin from the SD card self update is not
required. Although it functions correctly there is a small risk stale required. Although it functions correctly there is a small risk stale

View File

@@ -268,7 +268,7 @@ getBootloaderUpdateVersion() {
} }
checkDependencies() { checkDependencies() {
BOARD_INFO="$(hexdump -ve '1/1 "%02x"' /sys/firmware/devicetree/base/system/linux,revision)" BOARD_INFO="$(od -An -t x1 /sys/firmware/devicetree/base/system/linux,revision | tr -d ' ')"
if [ $(((0x$BOARD_INFO >> 23) & 1)) -ne 0 ] && [ $(((0x$BOARD_INFO >> 12) & 15)) -eq 3 ]; then if [ $(((0x$BOARD_INFO >> 23) & 1)) -ne 0 ] && [ $(((0x$BOARD_INFO >> 12) & 15)) -eq 3 ]; then
echo "BCM2711 detected" echo "BCM2711 detected"
else else