diff --git a/debian/changelog b/debian/changelog index 95c1cdb..707e313 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,16 @@ +rpi-eeprom (7.14-1) buster; urgency=medium + + [ Kyle J. McKay ] + * rpi-eeprom-update: avoid any possible od accidents + + [ Andrew Scheller ] + * Add BETA label to release notes + + [ Tim Gover ] + * pieeprom-2020-09-03.bin - Fix filename + + -- Serge Schneider Fri, 04 Sep 2020 16:00:32 +0100 + rpi-eeprom (7.13-1) buster; urgency=medium [ Tim Gover ] diff --git a/firmware/beta/pieeprom-2020-09-03.bin b/firmware/beta/pieeprom-2020-09-03.bin new file mode 100644 index 0000000..c49bb5c Binary files /dev/null and b/firmware/beta/pieeprom-2020-09-03.bin differ diff --git a/firmware/release-notes.md b/firmware/release-notes.md index 40167be..afc770d 100644 --- a/firmware/release-notes.md +++ b/firmware/release-notes.md @@ -3,13 +3,14 @@ USB MSD boot also requires updated beta GPU firmware. Please read https://www.raspberrypi.org/documentation/hardware/raspberrypi/bcm2711_bootloader_config.md -## 2020-09-02 Only use green LED for error status in bootloader +## 2020-09-03 Only use green LED for error status in bootloader - BETA * 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. + * Filename should be 2020-09-03 ## 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 diff --git a/rpi-eeprom-update b/rpi-eeprom-update index f2e79f0..a5ffecd 100755 --- a/rpi-eeprom-update +++ b/rpi-eeprom-update @@ -268,7 +268,7 @@ getBootloaderUpdateVersion() { } checkDependencies() { - BOARD_INFO="$(od -An -t x1 /sys/firmware/devicetree/base/system/linux,revision | tr -d ' ')" + BOARD_INFO="$(od -v -An -t x1 /sys/firmware/devicetree/base/system/linux,revision | tr -d ' \n')" if [ $(((0x$BOARD_INFO >> 23) & 1)) -ne 0 ] && [ $(((0x$BOARD_INFO >> 12) & 15)) -eq 3 ]; then echo "BCM2711 detected" else