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 2024-09-04 13:23:26 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/raspberrypi-eeprom (Old) and /work/SRC/openSUSE:Factory/.raspberrypi-eeprom.new.10096 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "raspberrypi-eeprom" Wed Sep 4 13:23:26 2024 rev:10 rq:1198483 version:2024.06.05 Changes: -------- --- /work/SRC/openSUSE:Factory/raspberrypi-eeprom/raspberrypi-eeprom.changes 2023-11-24 23:34:50.679549760 +0100 +++ /work/SRC/openSUSE:Factory/.raspberrypi-eeprom.new.10096/raspberrypi-eeprom.changes 2024-09-04 13:23:44.347544841 +0200 @@ -1,0 +2,13 @@ +Tue Sep 3 12:12:53 UTC 2024 - Guillaume GARDET <[email protected]> + +- Update to 2024.06.05 +- Skipped: + * v2024.04.20-2712 + * v2024.02.17-2712 + * v2024.02.16-2712 + * v.2024.01.05-2712 + * v2023.12.06-2712 +- Refresh patch: + * rpi-eeprom-update-Use-tr-instead-of-strings.patch + +------------------------------------------------------------------- Old: ---- raspberrypi-eeprom-2023.10.30.tar.xz New: ---- raspberrypi-eeprom-2024.06.05.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ raspberrypi-eeprom.spec ++++++ --- /var/tmp/diff_new_pack.IiJM8X/_old 2024-09-04 13:23:45.419589700 +0200 +++ /var/tmp/diff_new_pack.IiJM8X/_new 2024-09-04 13:23:45.419589700 +0200 @@ -1,7 +1,7 @@ # # spec file for package raspberrypi-eeprom # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2024 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: 2023.10.30 +Version: 2024.06.05 Release: 0 Summary: Raspberry Pi 4 and Pi 5 EEPROM firmware License: SUSE-Firmware @@ -58,6 +58,9 @@ %prep %autosetup -p1 +# 'strings' not needed - https://github.com/raspberrypi/rpi-eeprom/commit/ef0cfffced1bbee8ae6755ddf58e478c3d8c8f05 +sed -i 's/die "strings not found./#die "strings not found./' rpi-eeprom-update + %build %install ++++++ _service ++++++ --- /var/tmp/diff_new_pack.IiJM8X/_old 2024-09-04 13:23:45.451591039 +0200 +++ /var/tmp/diff_new_pack.IiJM8X/_new 2024-09-04 13:23:45.455591206 +0200 @@ -3,7 +3,7 @@ <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">6b14e84a2fb2e1f7220a404f65e7e0985f07c9e5</param> + <param name="revision">ef2fc67d235d037b2b468813e646e20890fcea07</param> <param name="versionrewrite-pattern">v([0-9\.]{10}).*</param> <param name="versionformat">@PARENT_TAG@</param> <!-- ++++++ raspberrypi-eeprom-2023.10.30.tar.xz -> raspberrypi-eeprom-2024.06.05.tar.xz ++++++ /work/SRC/openSUSE:Factory/raspberrypi-eeprom/raspberrypi-eeprom-2023.10.30.tar.xz /work/SRC/openSUSE:Factory/.raspberrypi-eeprom.new.10096/raspberrypi-eeprom-2024.06.05.tar.xz differ: char 15, line 1 ++++++ rpi-eeprom-update-Use-tr-instead-of-strings.patch ++++++ --- /var/tmp/diff_new_pack.IiJM8X/_old 2024-09-04 13:23:45.491592712 +0200 +++ /var/tmp/diff_new_pack.IiJM8X/_new 2024-09-04 13:23:45.495592880 +0200 @@ -1,4 +1,4 @@ -From 462564a95da99016969128dedc6b14ea66b12b17 Mon Sep 17 00:00:00 2001 +From 8dbe479a2cc88c960c90054a5106ccfcdcd86ab4 Mon Sep 17 00:00:00 2001 From: Nicolas Saenz Julienne <[email protected]> Date: Thu, 18 Feb 2021 17:49:46 +0100 Subject: [PATCH] rpi-eeprom-update: Use 'tr' instead of 'strings' @@ -23,28 +23,28 @@ 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rpi-eeprom-update b/rpi-eeprom-update -index cb25316..431f24f 100755 +index 6b54757..5ddf15a 100755 --- a/rpi-eeprom-update +++ b/rpi-eeprom-update -@@ -122,7 +122,7 @@ getBootloaderConfig() { +@@ -127,7 +127,7 @@ getBootloaderConfig() { local blconfig_nvmem_path="" - + 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 -maxdepth 3 -samefile "${blconfig_ofnode_path}" 2>/dev/null) - + if [ -e "${blconfig_ofnode_link}" ]; then -@@ -189,7 +189,7 @@ applyRecoveryUpdate() +@@ -194,7 +194,7 @@ applyRecoveryUpdate() [ -n "${BOOTLOADER_UPDATE_IMAGE}" ] || [ -n "${VL805_UPDATE_IMAGE}" ] || die "No update images specified" - + getBootloaderCurrentVersion - BOOTLOADER_UPDATE_VERSION=$(strings "${BOOTLOADER_UPDATE_IMAGE}" | grep BUILD_TIMESTAMP | sed 's/.*=//g') + BOOTLOADER_UPDATE_VERSION=$(tr -c [:print:] "\n" < "${BOOTLOADER_UPDATE_IMAGE}" | sed '/^BUILD_TIMESTAMP=/s/.*=//p;d') if [ "${BOOTLOADER_CURRENT_VERSION}" -gt "${BOOTLOADER_UPDATE_VERSION}" ]; then - echo " WARNING: Installing an older bootloader version." - echo " Update the rpi-eeprom package to fetch the latest bootloader images." -@@ -358,7 +358,7 @@ getBootloaderUpdateVersion() { + warn " WARNING: Installing an older bootloader version." + warn " Update the rpi-eeprom package to fetch the latest bootloader images." +@@ -367,7 +367,7 @@ getBootloaderUpdateVersion() { match=".*/pieeprom-[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9].bin" latest="$(find "${FIRMWARE_IMAGE_DIR}/" -maxdepth 1 -type f -follow -size "${EEPROM_SIZE}c" -regex "${match}" | sort -r | head -n1)" if [ -f "${latest}" ]; then @@ -53,4 +53,7 @@ BOOTLOADER_UPDATE_IMAGE="${latest}" fi } +-- +2.46.0 +
