diff --git a/firmware/release-notes.md b/firmware/release-notes.md index 5f5afba..8d5272d 100644 --- a/firmware/release-notes.md +++ b/firmware/release-notes.md @@ -1,5 +1,9 @@ # Raspberry Pi4 bootloader EEPROM release notes +## 2023-01-12 - Promote previous BETA release to STABLE + * Sign the 2023-01-04 release with the secure-boot ROM key and release + as pieeprom-2023-01-11.bin + ## 2023-01-04 - VL805 firmware update - BETA * Update VL805 to 138C0 - fix for handling of split transactions https://github.com/raspberrypi/linux/pull/5262 diff --git a/firmware/stable/pieeprom-2023-01-11.bin b/firmware/stable/pieeprom-2023-01-11.bin new file mode 100644 index 0000000..c8002b6 Binary files /dev/null and b/firmware/stable/pieeprom-2023-01-11.bin differ diff --git a/firmware/stable/recovery.bin b/firmware/stable/recovery.bin index 58b3732..ff94284 100644 Binary files a/firmware/stable/recovery.bin and b/firmware/stable/recovery.bin differ diff --git a/firmware/stable/vl805-000138c0.bin b/firmware/stable/vl805-000138c0.bin new file mode 100644 index 0000000..f9caa03 Binary files /dev/null and b/firmware/stable/vl805-000138c0.bin differ diff --git a/rpi-eeprom-update b/rpi-eeprom-update index 79eb3bf..cb25316 100755 --- a/rpi-eeprom-update +++ b/rpi-eeprom-update @@ -126,7 +126,7 @@ getBootloaderConfig() { if [ -f "${blconfig_alias}" ]; then local blconfig_ofnode_path="/sys/firmware/devicetree/base"$(strings "${blconfig_alias}")"" - local blconfig_ofnode_link=$(find -L /sys/bus/nvmem -samefile "${blconfig_ofnode_path}" 2>/dev/null) + local blconfig_ofnode_link=$(find -L /sys/bus/nvmem -maxdepth 3 -samefile "${blconfig_ofnode_path}" 2>/dev/null) if [ -e "${blconfig_ofnode_link}" ]; then blconfig_nvmem_path=$(dirname "${blconfig_ofnode_link}")