mirror of
https://github.com/raspberrypi/rpi-eeprom.git
synced 2026-01-21 06:13:33 +08:00
Compare commits
12 Commits
v2022.11.2
...
v2023.01.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bf7419c961 | ||
|
|
6532032cc6 | ||
|
|
e2fc5b1993 | ||
|
|
259c4e99ed | ||
|
|
5129267f6a | ||
|
|
55ca589ab9 | ||
|
|
b4b4605c7d | ||
|
|
2fb2132904 | ||
|
|
6e79e995bb | ||
|
|
36886df55b | ||
|
|
388ee17283 | ||
|
|
2c6dabedf1 |
BIN
firmware/beta/pieeprom-2022-12-07.bin
Normal file
BIN
firmware/beta/pieeprom-2022-12-07.bin
Normal file
Binary file not shown.
BIN
firmware/beta/pieeprom-2023-01-04.bin
Normal file
BIN
firmware/beta/pieeprom-2023-01-04.bin
Normal file
Binary file not shown.
Binary file not shown.
BIN
firmware/beta/vl805-000138c0.bin
Normal file
BIN
firmware/beta/vl805-000138c0.bin
Normal file
Binary file not shown.
BIN
firmware/critical/pieeprom-2022-12-07.bin
Normal file
BIN
firmware/critical/pieeprom-2022-12-07.bin
Normal file
Binary file not shown.
BIN
firmware/critical/pieeprom-2023-01-11.bin
Normal file
BIN
firmware/critical/pieeprom-2023-01-11.bin
Normal file
Binary file not shown.
Binary file not shown.
BIN
firmware/critical/vl805-000138c0.bin
Normal file
BIN
firmware/critical/vl805-000138c0.bin
Normal file
Binary file not shown.
@@ -1,5 +1,26 @@
|
||||
# Raspberry Pi4 bootloader EEPROM release notes
|
||||
|
||||
## 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
|
||||
https://github.com/raspberrypi/linux/pull/5262
|
||||
* Fix HID error handling with network install
|
||||
https://github.com/raspberrypi/rpi-eeprom/issues/458
|
||||
|
||||
## 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
|
||||
* Fix HID error handling with network install
|
||||
https://github.com/raspberrypi/rpi-eeprom/issues/458
|
||||
|
||||
## 2022-12-07 - Fix SD voltage reset on Pi4 R1.1 (DEFAULT/STABLE/BETA).
|
||||
* Fix issue where SD voltage was not reset by power cycling PMIC on reboot.
|
||||
See https://github.com/raspberrypi/firmware/issues/1763
|
||||
|
||||
## 2022-12-01 - Promote pieeprom-2022-11-25 to the DEFAULT release.
|
||||
Interesting changes since the last default release
|
||||
* [tryboot] conditional statement + tryboot_a_b mode
|
||||
|
||||
BIN
firmware/stable/pieeprom-2022-12-07.bin
Normal file
BIN
firmware/stable/pieeprom-2022-12-07.bin
Normal file
Binary file not shown.
BIN
firmware/stable/pieeprom-2023-01-11.bin
Normal file
BIN
firmware/stable/pieeprom-2023-01-11.bin
Normal file
Binary file not shown.
Binary file not shown.
BIN
firmware/stable/vl805-000138c0.bin
Normal file
BIN
firmware/stable/vl805-000138c0.bin
Normal file
Binary file not shown.
@@ -4,4 +4,4 @@ set -e
|
||||
|
||||
script_dir=$(cd "$(dirname "$0")" && pwd)
|
||||
|
||||
${script_dir}/make-release critical 2022-04-26 000138a1 "${script_dir}" release rpi-boot-eeprom-recovery
|
||||
${script_dir}/make-release critical 2023-01-11 000138c0 "${script_dir}" release rpi-boot-eeprom-recovery
|
||||
|
||||
@@ -6,7 +6,7 @@ bootloader is automatically updated after an APT update via the [rpi-eeprom-upda
|
||||
Release notes are available [here](https://github.com/raspberrypi/rpi-eeprom/blob/master/firmware/release-notes.md).
|
||||
|
||||
## Default release
|
||||
The default production EEPROM image release is [2020-09-03](https://github.com/raspberrypi/rpi-eeprom/releases/tag/v2020.09.03-138a1) and can be installed via the [Raspberry Pi Imager](https://www.raspberrypi.org/downloads/).
|
||||
The default production EEPROM image release is [2022-11-25](https://github.com/raspberrypi/rpi-eeprom/releases/tag/v2022.11.25-138a1) and can be installed via the [Raspberry Pi Imager](https://www.raspberrypi.com/software/).
|
||||
|
||||
## USB MSD boot
|
||||
Please see the [USB mass storage boot](https://www.raspberrypi.com/documentation/computers/raspberry-pi.html#usb-mass-storage-boot) guide.
|
||||
|
||||
@@ -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}")
|
||||
|
||||
Reference in New Issue
Block a user