1
0
raspberrypi-eeprom/add-suse-config.patch
Guillaume GARDET 9adfd4c24c Accepting request 1128311 from home:Guillaume_G:branches:hardware:boot
- Update to v2023.10.30:
  * Fix SDIO / WiFi clock-setup for BOOT_ORDER=0xf14
  * Fix SD power-on-reset
  * Firmware support for improved watchdog driver
  * Update DHCP Option97 to be R,P,i,5 on Pi5
- Updates from skipped v2023.10.18:
  * Add support for HAT gpiomap for improved HAT compatibility.
  * Add I2C probe for DSI display auto detect
  * Automatically set dtparam=nvme if booted from nvme
  * Fix network boot reset issue where only the first attempt works.
  * Adding pciex4_reset=0 to config.txt will leave RP1 PCIe enabled
    when ARM stage is started.
  * Prevent HDMI diagnostics being displayed immediately when
    waking after HALT.
  * Update board-name - "Raspberry Pi 5"
- Refresh patches:
  * add-suse-config.patch
  * rpi-eeprom-update-Use-tr-instead-of-strings.patch

OBS-URL: https://build.opensuse.org/request/show/1128311
OBS-URL: https://build.opensuse.org/package/show/hardware:boot/raspberrypi-eeprom?expand=0&rev=25
2023-11-24 07:22:50 +00:00

14 lines
539 B
Diff

diff --git a/rpi-eeprom-update b/rpi-eeprom-update
index 984ade2..c50a5b1 100755
--- a/rpi-eeprom-update
+++ b/rpi-eeprom-update
@@ -688,7 +688,7 @@ findBootFS()
BOOTFS="${TMP_BOOTFS_MNT}"
elif [ -z "$BOOTFS" ]; then
if ! BOOTFS=$(/usr/lib/raspberrypi-sys-mods/get_fw_loc 2> /dev/null); then
- for BOOTFS in /boot/firmware /boot; do
+ for BOOTFS in /boot/efi /boot; do
if [ -f "${BOOTFS}/config.txt" ]; then
break
elif findmnt --fstab "$BOOTFS" > /dev/null; then