mirror of
https://github.com/raspberrypi/rpi-eeprom.git
synced 2026-01-21 06:13:33 +08:00
Compare commits
9 Commits
v2023.10.3
...
v2023.12.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
77402b6527 | ||
|
|
9c8d97d6a2 | ||
|
|
f20bb90a67 | ||
|
|
7e22b8ff47 | ||
|
|
8f19146862 | ||
|
|
e4724b4783 | ||
|
|
1e5594c51b | ||
|
|
b57586ead2 | ||
|
|
46c89bee09 |
BIN
firmware-2712/default/pieeprom-2023-11-20.bin
Normal file
BIN
firmware-2712/default/pieeprom-2023-11-20.bin
Normal file
Binary file not shown.
BIN
firmware-2712/default/pieeprom-2023-12-06.bin
Normal file
BIN
firmware-2712/default/pieeprom-2023-12-06.bin
Normal file
Binary file not shown.
BIN
firmware-2712/latest/pieeprom-2023-11-20.bin
Normal file
BIN
firmware-2712/latest/pieeprom-2023-11-20.bin
Normal file
Binary file not shown.
BIN
firmware-2712/latest/pieeprom-2023-12-06.bin
Normal file
BIN
firmware-2712/latest/pieeprom-2023-12-06.bin
Normal file
Binary file not shown.
@@ -1,5 +1,27 @@
|
||||
# Raspberry Pi5 bootloader EEPROM release notes
|
||||
|
||||
2023-12-12: Promote 2023-12-06 to default release.
|
||||
|
||||
2023-12-06: Initialise DWC PHY (latest)
|
||||
|
||||
* Initialise the DWC PHY to enable DWC host+peripheral support under Linux.
|
||||
Requires https://github.com/raspberrypi/linux/commit/82069a7a02632aa60fa5c69415bf891ede7d6fd4
|
||||
* Force PWM on 3V3 supply if cameras or HATs are connected or if power_force_3v3_pwm=1 in config.txt
|
||||
Resolves an image quality issue with the GS camera.
|
||||
* Add support for C(arm_min_freq) < 1500 MHz (must be at >= 200 MHz)
|
||||
* Manufacturing test updates for DVFS.
|
||||
|
||||
2023-11-20: Auto-detect support for PCIe expansion HAT (default + latest)
|
||||
|
||||
* Add autodetect support for PCIe expansion HATs
|
||||
* Add PCIE_PROBE=1 to the EEPROM config for custom PCIe exapansion
|
||||
designs that do not support the upcoming HAT spec. This gives
|
||||
similar behaviour to CM4 where PCIe x1 is enumerated to discover NVMe
|
||||
devices.
|
||||
* Fix loading of multiple initramfs images that are not 32-bit aligned sizes
|
||||
https://github.com/raspberrypi/firmware/issues/1843
|
||||
* Kernel load performance improvement - remove a memcpy
|
||||
|
||||
2023-10-30: UPG watchdog support + SD reset fixes (default + latest)
|
||||
|
||||
* Fix SDIO / WiFi clock-setup for BOOT_ORDER=0xf14
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
[all]
|
||||
BOOT_UART=1
|
||||
BOOT_ORDER=0xf41
|
||||
BOOT_ORDER=0xf461
|
||||
POWER_OFF_ON_HALT=0
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
[all]
|
||||
BOOT_UART=1
|
||||
BOOT_ORDER=0xf41
|
||||
BOOT_ORDER=0xf461
|
||||
POWER_OFF_ON_HALT=0
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
[all]
|
||||
BOOT_UART=1
|
||||
BOOT_ORDER=0xf14
|
||||
BOOT_ORDER=0xf146
|
||||
POWER_OFF_ON_HALT=0
|
||||
|
||||
|
||||
@@ -19,6 +19,7 @@ elif [ -d /lib/firmware/raspberrypi/bootloader ] || [ -d /lib/firmware/raspberry
|
||||
else
|
||||
# Work from local git checkout
|
||||
LOCAL_MODE=1
|
||||
IGNORE_DPKG_CHECKSUMS=1
|
||||
FIRMWARE_ROOT="${script_dir}/firmware"
|
||||
fi
|
||||
|
||||
@@ -529,7 +530,6 @@ Options:
|
||||
Ignores the FREEZE_VERSION flag in bootloader and is intended for manual
|
||||
firmware updates.
|
||||
-h Display help text and exit
|
||||
-i Ignore package checksums - for rpi-eeprom developers.
|
||||
-j Write status information using JSON notation (requires -m option)
|
||||
-l Returns the full path to the latest available EEPROM image file according
|
||||
to the FIRMWARE_RELEASE_STATUS and FIRMWARE_IMAGE_DIR settings.
|
||||
@@ -915,7 +915,8 @@ AUTO_UPDATE_VL805=0
|
||||
SILENT_UPDATE=0
|
||||
MACHINE_OUTPUT=""
|
||||
JSON_OUTPUT="no"
|
||||
IGNORE_DPKG_CHECKSUMS=${LOCAL_MODE}
|
||||
# Ignore dpkg checksums by default so that rpi-update can install new binaries into /lib/firmware
|
||||
IGNORE_DPKG_CHECKSUMS=${IGNORE_DPKG_CHECKSUMS:-1}
|
||||
PACKAGE_INFO_DIR="/var/lib/dpkg/info/"
|
||||
if [ ! -d "${PACKAGE_INFO_DIR}" ]; then
|
||||
IGNORE_DPKG_CHECKSUMS=1
|
||||
@@ -945,7 +946,9 @@ while getopts A:abdhilf:m:ju:rs option; do
|
||||
;;
|
||||
f) BOOTLOADER_UPDATE_IMAGE="${OPTARG}"
|
||||
;;
|
||||
i) IGNORE_DPKG_CHECKSUMS=1
|
||||
i)
|
||||
# Script default is 1 but this could have been set to zero in the defaults file
|
||||
IGNORE_DPKG_CHECKSUMS=1
|
||||
;;
|
||||
j) JSON_OUTPUT="yes"
|
||||
;;
|
||||
|
||||
Reference in New Issue
Block a user