mirror of
https://github.com/raspberrypi/rpi-eeprom.git
synced 2026-01-21 06:13:33 +08:00
Merge branch 'master' into debian/bookworm
This commit is contained in:
BIN
firmware-2712/latest/pieeprom-2024-01-24.bin
Normal file
BIN
firmware-2712/latest/pieeprom-2024-01-24.bin
Normal file
Binary file not shown.
BIN
firmware-2712/latest/pieeprom-2024-02-05.bin
Normal file
BIN
firmware-2712/latest/pieeprom-2024-02-05.bin
Normal file
Binary file not shown.
Binary file not shown.
@@ -1,5 +1,12 @@
|
|||||||
# Raspberry Pi5 bootloader EEPROM release notes
|
# Raspberry Pi5 bootloader EEPROM release notes
|
||||||
|
|
||||||
|
2024-02-05: Add support for HAT+ POE HATs (latest)
|
||||||
|
* Add support for probing HAT+ POE HATs
|
||||||
|
* Implement DWC3 specific XHCI quirks
|
||||||
|
|
||||||
|
2024-01-24: NVMe boot fix for WD NVMe (latest)
|
||||||
|
* Add a workaround for an issue seen when booting with WD Blue SN550 NVMe SSD
|
||||||
|
|
||||||
2024-01-22: Add support for network-install (latest)
|
2024-01-22: Add support for network-install (latest)
|
||||||
* Fix issue boot.img end sector check - STABLE
|
* Fix issue boot.img end sector check - STABLE
|
||||||
See: https://github.com/raspberrypi/rpi-eeprom/issues/521
|
See: https://github.com/raspberrypi/rpi-eeprom/issues/521
|
||||||
|
|||||||
@@ -404,6 +404,10 @@ checkDependencies() {
|
|||||||
# Default to off - in the future Raspberry Pi 5 may default to using flashrom if
|
# Default to off - in the future Raspberry Pi 5 may default to using flashrom if
|
||||||
# flashrom is available.
|
# flashrom is available.
|
||||||
[ -z "${RPI_EEPROM_USE_FLASHROM}" ] && RPI_EEPROM_USE_FLASHROM=0
|
[ -z "${RPI_EEPROM_USE_FLASHROM}" ] && RPI_EEPROM_USE_FLASHROM=0
|
||||||
|
if [ "${RPI_EEPROM_USE_FLASHROM}" -eq 1 ] && ! command -v flashrom > /dev/null; then
|
||||||
|
echo "WARNING: flashrom not found. Setting RPI_EEPROM_USE_FLASHROM to 0"
|
||||||
|
RPI_EEPROM_USE_FLASHROM=0
|
||||||
|
fi
|
||||||
|
|
||||||
FIRMWARE_IMAGE_DIR="${FIRMWARE_ROOT}-${BCM_CHIP}/${FIRMWARE_RELEASE_STATUS}"
|
FIRMWARE_IMAGE_DIR="${FIRMWARE_ROOT}-${BCM_CHIP}/${FIRMWARE_RELEASE_STATUS}"
|
||||||
if ! [ -d "${FIRMWARE_IMAGE_DIR}" ]; then
|
if ! [ -d "${FIRMWARE_IMAGE_DIR}" ]; then
|
||||||
@@ -483,10 +487,6 @@ checkDependencies() {
|
|||||||
if [ "${BCM_CHIP}" = 2711 ] && [ ! -f "${RECOVERY_BIN}" ]; then
|
if [ "${BCM_CHIP}" = 2711 ] && [ ! -f "${RECOVERY_BIN}" ]; then
|
||||||
die "${RECOVERY_BIN} not found."
|
die "${RECOVERY_BIN} not found."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if ! command -v flashrom > /dev/null; then
|
|
||||||
RPI_EEPROM_USE_FLASHROM=0
|
|
||||||
fi
|
|
||||||
}
|
}
|
||||||
|
|
||||||
usage() {
|
usage() {
|
||||||
|
|||||||
Reference in New Issue
Block a user