diff --git a/firmware/beta/pieeprom-2023-05-11.bin b/firmware/beta/pieeprom-2023-05-11.bin new file mode 100644 index 0000000..f4b6923 Binary files /dev/null and b/firmware/beta/pieeprom-2023-05-11.bin differ diff --git a/firmware/release-notes.md b/firmware/release-notes.md index cc1156d..29c82cc 100644 --- a/firmware/release-notes.md +++ b/firmware/release-notes.md @@ -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 diff --git a/firmware/stable/pieeprom-2023-05-11.bin b/firmware/stable/pieeprom-2023-05-11.bin new file mode 100644 index 0000000..f4b6923 Binary files /dev/null and b/firmware/stable/pieeprom-2023-05-11.bin differ diff --git a/rpi-eeprom-update b/rpi-eeprom-update index cb25316..be0f4e5 100755 --- a/rpi-eeprom-update +++ b/rpi-eeprom-update @@ -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}"