Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package raspberrypi-eeprom for openSUSE:Factory checked in at 2023-01-23 18:33:40 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/raspberrypi-eeprom (Old) and /work/SRC/openSUSE:Factory/.raspberrypi-eeprom.new.32243 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "raspberrypi-eeprom" Mon Jan 23 18:33:40 2023 rev:7 rq:1060408 version:2023.01.11 Changes: -------- --- /work/SRC/openSUSE:Factory/raspberrypi-eeprom/raspberrypi-eeprom.changes 2022-03-11 11:34:48.982165227 +0100 +++ /work/SRC/openSUSE:Factory/.raspberrypi-eeprom.new.32243/raspberrypi-eeprom.changes 2023-01-23 18:33:41.360776722 +0100 @@ -1,0 +2,27 @@ +Sun Jan 22 20:32:45 UTC 2023 - Tobias Klausmann <tobias.klausm...@freenet.de> + +- 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. + +------------------------------------------------------------------- Old: ---- raspberrypi-eeprom-2022.01.25.obscpio New: ---- raspberrypi-eeprom-2023.01.11.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ raspberrypi-eeprom.spec ++++++ --- /var/tmp/diff_new_pack.RD9g4l/_old 2023-01-23 18:33:42.224782701 +0100 +++ /var/tmp/diff_new_pack.RD9g4l/_new 2023-01-23 18:33:42.228782728 +0100 @@ -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 ++++++ _service ++++++ --- /var/tmp/diff_new_pack.RD9g4l/_old 2023-01-23 18:33:42.264782977 +0100 +++ /var/tmp/diff_new_pack.RD9g4l/_new 2023-01-23 18:33:42.268783005 +0100 @@ -1,9 +1,9 @@ <services> - <service name="obs_scm" mode="disabled"> + <service name="tar_scm" mode="disabled"> <param name="scm">git</param> <param name="url">https://github.com/raspberrypi/rpi-eeprom.git</param> <param name="filename">raspberrypi-eeprom</param> - <param name="revision">c1c19fd4ba380a3e349791089701082cb51da39d</param> + <param name="revision">bf7419c961e8b65854fd73ec29fbc515087539e8</param> <param name="versionrewrite-pattern">v([0-9\.]{10}).*</param> <param name="versionformat">@PARENT_TAG@</param> <!-- @@ -11,8 +11,7 @@ --> </service> <service name="set_version" mode="disabled"/> - <service name="tar" mode="buildtime"/> - <service name="recompress" mode="buildtime"> + <service name="recompress" mode="disabled"> <param name="file">*.tar</param> <param name="compression">xz</param> </service> ++++++ raspberrypi-eeprom.obsinfo ++++++ --- /var/tmp/diff_new_pack.RD9g4l/_old 2023-01-23 18:33:42.296783199 +0100 +++ /var/tmp/diff_new_pack.RD9g4l/_new 2023-01-23 18:33:42.296783199 +0100 @@ -1,5 +1,5 @@ name: raspberrypi-eeprom -version: 2022.01.25 -mtime: 1643130377 -commit: c1c19fd4ba380a3e349791089701082cb51da39d +version: 2023.01.11 +mtime: 1674059670 +commit: bf7419c961e8b65854fd73ec29fbc515087539e8 ++++++ rpi-eeprom-update-Use-tr-instead-of-strings.patch ++++++ --- /var/tmp/diff_new_pack.RD9g4l/_old 2023-01-23 18:33:42.312783310 +0100 +++ /var/tmp/diff_new_pack.RD9g4l/_new 2023-01-23 18:33:42.312783310 +0100 @@ -29,7 +29,7 @@ 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() {