mirror of
https://github.com/raspberrypi/rpi-eeprom.git
synced 2026-01-20 21:13:36 +08:00
Merge branch 'master' into debian/bullseye
This commit is contained in:
BIN
firmware/beta/pieeprom-2023-05-11.bin
Normal file
BIN
firmware/beta/pieeprom-2023-05-11.bin
Normal file
Binary file not shown.
@@ -1,5 +1,10 @@
|
||||
# Raspberry Pi4 bootloader EEPROM release notes
|
||||
|
||||
## 2023-05-15 - Promote pieeprom-2023-05-11 to STABLE
|
||||
|
||||
## 2023-05-11 - Fix hang in secure-boot init - BETA
|
||||
* Fix intermittent hang when initialising secure-boot during a reboot loop.
|
||||
|
||||
## 2023-01-18 - Promote previous STABLE release to DEFAULT
|
||||
Interesting changes since the last default release
|
||||
* Update VL805 to 138C0 - fix for handling of split transactions
|
||||
|
||||
BIN
firmware/stable/pieeprom-2023-05-11.bin
Normal file
BIN
firmware/stable/pieeprom-2023-05-11.bin
Normal file
Binary file not shown.
@@ -308,7 +308,7 @@ BOOTLOADER_UPDATE_VERSION=0
|
||||
getBootloaderUpdateVersion() {
|
||||
BOOTLOADER_UPDATE_VERSION=0
|
||||
match=".*/pieeprom-[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9].bin"
|
||||
latest="$(find "${FIRMWARE_IMAGE_DIR}/" -maxdepth 1 -type f -size "${EEPROM_SIZE}c" -regex "${match}" | sort -r | head -n1)"
|
||||
latest="$(find "${FIRMWARE_IMAGE_DIR}/" -maxdepth 1 -type f -follow -size "${EEPROM_SIZE}c" -regex "${match}" | sort -r | head -n1)"
|
||||
if [ -f "${latest}" ]; then
|
||||
BOOTLOADER_UPDATE_VERSION=$(strings "${latest}" | grep BUILD_TIMESTAMP | sed 's/.*=//g')
|
||||
BOOTLOADER_UPDATE_IMAGE="${latest}"
|
||||
|
||||
Reference in New Issue
Block a user