Merge branch 'master' into debian/bullseye

This commit is contained in:
Serge Schneider
2023-05-16 07:54:11 +01:00
4 changed files with 6 additions and 1 deletions

Binary file not shown.

View File

@@ -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

Binary file not shown.

View File

@@ -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}"