mirror of
https://github.com/raspberrypi/rpi-eeprom.git
synced 2026-01-20 21:13:36 +08:00
11
debian/changelog
vendored
11
debian/changelog
vendored
@@ -1,3 +1,14 @@
|
|||||||
|
rpi-eeprom (12.5-1) buster; urgency=medium
|
||||||
|
|
||||||
|
[ Dave Jones ]
|
||||||
|
* Remove redundant vcmailbox reference
|
||||||
|
* Add a test to cause the script to exit cleanly on non-Pi hardware
|
||||||
|
|
||||||
|
[ Tim Gover ]
|
||||||
|
* pieeprom-2021-06-11 - Add USB_MSD_STARTUP_DELAY
|
||||||
|
|
||||||
|
-- Serge Schneider <serge@raspberrypi.com> Fri, 11 Jun 2021 15:59:27 +0100
|
||||||
|
|
||||||
rpi-eeprom (12.4-1) buster; urgency=medium
|
rpi-eeprom (12.4-1) buster; urgency=medium
|
||||||
|
|
||||||
[ Andrew Scheller ]
|
[ Andrew Scheller ]
|
||||||
|
|||||||
BIN
firmware/beta/pieeprom-2021-06-11.bin
Normal file
BIN
firmware/beta/pieeprom-2021-06-11.bin
Normal file
Binary file not shown.
Binary file not shown.
@@ -3,6 +3,15 @@
|
|||||||
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.org/documentation/hardware/raspberrypi/bcm2711_bootloader_config.md
|
https://www.raspberrypi.org/documentation/hardware/raspberrypi/bcm2711_bootloader_config.md
|
||||||
|
|
||||||
|
## 2021-06-11 - Add USB_MSD_STARTUP_DELAY option - BETA
|
||||||
|
* Minor update to BRCM SDRAM settings.
|
||||||
|
* Add USB_MSD_STARTUP_DELAY option (default 0 option). This adds a configurable
|
||||||
|
delay (in milliseconds) the first time the USB host controller is initialised
|
||||||
|
before device enumeration.
|
||||||
|
Normally, this should not be required. However, some HDD enclosures may
|
||||||
|
require an extended startup delay in order to spinup drives. Without this
|
||||||
|
the get-capacity command may stall and timeout.
|
||||||
|
|
||||||
## 2021-05-19 - Use the latest BRCM SDRAM settings - BETA
|
## 2021-05-19 - Use the latest BRCM SDRAM settings - BETA
|
||||||
* Use the latest BRCM SDRAM settings.
|
* Use the latest BRCM SDRAM settings.
|
||||||
* FAT12 support for small bootloader ramdisk images.
|
* FAT12 support for small bootloader ramdisk images.
|
||||||
|
|||||||
@@ -30,7 +30,6 @@ FIRMWARE_BACKUP_DIR=${FIRMWARE_BACKUP_DIR:-/var/lib/raspberrypi/bootloader/backu
|
|||||||
ENABLE_VL805_UPDATES=${ENABLE_VL805_UPDATES:-1}
|
ENABLE_VL805_UPDATES=${ENABLE_VL805_UPDATES:-1}
|
||||||
RECOVERY_BIN=${RECOVERY_BIN:-${FIRMWARE_ROOT}/${FIRMWARE_RELEASE_STATUS}/recovery.bin}
|
RECOVERY_BIN=${RECOVERY_BIN:-${FIRMWARE_ROOT}/${FIRMWARE_RELEASE_STATUS}/recovery.bin}
|
||||||
BOOTFS=${BOOTFS:-/boot}
|
BOOTFS=${BOOTFS:-/boot}
|
||||||
VCMAILBOX=${VCMAILBOX:-/opt/vc/bin/vcmailbox}
|
|
||||||
CM4_ENABLE_RPI_EEPROM_UPDATE=${CM4_ENABLE_RPI_EEPROM_UPDATE:-0}
|
CM4_ENABLE_RPI_EEPROM_UPDATE=${CM4_ENABLE_RPI_EEPROM_UPDATE:-0}
|
||||||
RPI_EEPROM_UPDATE_CONFIG_TOOL="${RPI_EEPROM_UPDATE_CONFIG_TOOL:-raspi-config}"
|
RPI_EEPROM_UPDATE_CONFIG_TOOL="${RPI_EEPROM_UPDATE_CONFIG_TOOL:-raspi-config}"
|
||||||
|
|
||||||
@@ -315,8 +314,11 @@ checkDependencies() {
|
|||||||
BOARD_INFO="$(od -v -An -t x1 /sys/firmware/devicetree/base/system/linux,revision | tr -d ' \n')"
|
BOARD_INFO="$(od -v -An -t x1 /sys/firmware/devicetree/base/system/linux,revision | tr -d ' \n')"
|
||||||
elif grep -q Revision /proc/cpuinfo; then
|
elif grep -q Revision /proc/cpuinfo; then
|
||||||
BOARD_INFO="$(sed -n '/^Revision/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo)"
|
BOARD_INFO="$(sed -n '/^Revision/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo)"
|
||||||
else
|
elif command -v vcgencmd > /dev/null; then
|
||||||
BOARD_INFO="$(vcgencmd otp_dump | grep '30:' | sed 's/.*://')"
|
BOARD_INFO="$(vcgencmd otp_dump | grep '30:' | sed 's/.*://')"
|
||||||
|
else
|
||||||
|
echo "No Raspberry Pi board info found"
|
||||||
|
exit ${EXIT_SUCCESS}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ $(((0x$BOARD_INFO >> 23) & 1)) -eq 0 ] || [ $(((0x$BOARD_INFO >> 12) & 15)) -ne 3 ]; then
|
if [ $(((0x$BOARD_INFO >> 23) & 1)) -eq 0 ] || [ $(((0x$BOARD_INFO >> 12) & 15)) -ne 3 ]; then
|
||||||
|
|||||||
Reference in New Issue
Block a user