diff --git a/_service b/_service index 2519b91..e219aaa 100644 --- a/_service +++ b/_service @@ -1,9 +1,9 @@ - + git https://github.com/raspberrypi/rpi-eeprom.git raspberrypi-eeprom - c1c19fd4ba380a3e349791089701082cb51da39d + bf7419c961e8b65854fd73ec29fbc515087539e8 v([0-9\.]{10}).* @PARENT_TAG@ - - + *.tar xz diff --git a/raspberrypi-eeprom-2022.01.25.obscpio b/raspberrypi-eeprom-2022.01.25.obscpio deleted file mode 100644 index cb52617..0000000 --- a/raspberrypi-eeprom-2022.01.25.obscpio +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2e08d08db6364f5cdce098b97bc9bb1b6717a9dcf4b07b401703b3eef7b7fbd8 -size 45966861 diff --git a/raspberrypi-eeprom-2023.01.11.tar.xz b/raspberrypi-eeprom-2023.01.11.tar.xz new file mode 100644 index 0000000..8132d1e --- /dev/null +++ b/raspberrypi-eeprom-2023.01.11.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8780e57912d9fbb31b28d0aea1e6337f3e9c4decfe0ae5544042cb21e2911aac +size 3531228 diff --git a/raspberrypi-eeprom.changes b/raspberrypi-eeprom.changes index c44eb56..2292c87 100644 --- a/raspberrypi-eeprom.changes +++ b/raspberrypi-eeprom.changes @@ -1,3 +1,30 @@ +------------------------------------------------------------------- +Sun Jan 22 20:32:45 UTC 2023 - Tobias Klausmann + +- Packaging changes: + * Compress archive to tar.xz to save space (~43M -> ~3.4M) + * Refresh rpi-eeprom-update-Use-tr-instead-of-strings.patch +- 2023-01-11-vl805-000138c0: +- Interesting changes since the last release:- + * Update VL805 to 138C0 - fix for handling of split transactions + raspberrypi/linux#5262 + * Fix HID error handling with network install #458 +- 2022-11-25-vl805-000138a1: +- Interesting changes since the last release:- + * Add [tryboot] conditional statement to autoboot.txt + tryboot_a_b mode + * Support custom OTP mac addresses + * Increase TFTP_MAX_BLOCK_SIZE + * Stop NVMe cleanly + * Fixes for NETCONSOLE parsing and initialisation. + * Long filename support for start_file / fixup_file. + * Secure boot and display debug info on the diagnostics screen. +- 2022-04-26-vl805-000138a1: +- Interesting changes since the last default release: + * Implement network install + * Add support for BOOT_ORDER_HTTP + * Enable the boot partition number to be specified as an EEPROM config + property. + ------------------------------------------------------------------- Tue Mar 8 12:28:21 UTC 2022 - Guillaume GARDET diff --git a/raspberrypi-eeprom.obsinfo b/raspberrypi-eeprom.obsinfo index b15af86..883500b 100644 --- a/raspberrypi-eeprom.obsinfo +++ b/raspberrypi-eeprom.obsinfo @@ -1,4 +1,4 @@ name: raspberrypi-eeprom -version: 2022.01.25 -mtime: 1643130377 -commit: c1c19fd4ba380a3e349791089701082cb51da39d +version: 2023.01.11 +mtime: 1674059670 +commit: bf7419c961e8b65854fd73ec29fbc515087539e8 diff --git a/raspberrypi-eeprom.spec b/raspberrypi-eeprom.spec index 8fc0bd7..c50fbdc 100644 --- a/raspberrypi-eeprom.spec +++ b/raspberrypi-eeprom.spec @@ -1,7 +1,7 @@ # # spec file for package raspberrypi-eeprom # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -21,7 +21,7 @@ %endif Name: raspberrypi-eeprom -Version: 2022.01.25 +Version: 2023.01.11 Release: 0 Summary: Raspberry Pi 4 EEPROM firmware License: SUSE-Firmware diff --git a/rpi-eeprom-update-Use-tr-instead-of-strings.patch b/rpi-eeprom-update-Use-tr-instead-of-strings.patch index c5835e7..4dc57e4 100644 --- a/rpi-eeprom-update-Use-tr-instead-of-strings.patch +++ b/rpi-eeprom-update-Use-tr-instead-of-strings.patch @@ -29,7 +29,7 @@ index 332d39c..e4df232 100755 if [ -f "${blconfig_alias}" ]; then - local blconfig_ofnode_path="/sys/firmware/devicetree/base"$(strings "${blconfig_alias}")"" + local blconfig_ofnode_path="/sys/firmware/devicetree/base"$(tr -cd [:print:] < "${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 @@ -288,7 +288,7 @@ getBootloaderUpdateVersion() {