Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package kernel-firmware for openSUSE:Factory
checked in at 2024-09-15 12:32:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kernel-firmware (Old)
and /work/SRC/openSUSE:Factory/.kernel-firmware.new.29891 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kernel-firmware"
Sun Sep 15 12:32:59 2024 rev:239 rq:1200777 version:20240912
Changes:
--------
--- /work/SRC/openSUSE:Factory/kernel-firmware/kernel-firmware.changes
2024-09-05 15:47:02.035688884 +0200
+++
/work/SRC/openSUSE:Factory/.kernel-firmware.new.29891/kernel-firmware.changes
2024-09-15 12:33:43.653840436 +0200
@@ -1,0 +2,29 @@
+Fri Sep 13 07:44:25 UTC 2024 - [email protected]
+
+- Update to version 20240912 (git commit 47c72fee8fe3):
+ * amdgpu: Add VPE 6.1.3 microcode
+ * amdgpu: add SDMA 6.1.2 microcode
+ * amdgpu: Add support for PSP 14.0.4
+ * amdgpu: add GC 11.5.2 microcode
+ * qcom: qcm6490: add ADSP and CDSP firmware
+ * linux-firmware: Update firmware file for Intel Bluetooth Magnetor core
+ * linux-firmware: Update firmware file for Intel BlazarU core
+ * linux-firmware: Update firmware file for Intel Bluetooth Solar core
+- Temporary fix for the missing symlink installations:
+ copy-firmware-fix-symlink-without-compress.patch
+
+-------------------------------------------------------------------
+Wed Sep 11 15:10:39 UTC 2024 - [email protected]
+
+- Update to version 20240911 (git commit 59def907425d):
+ * rtl_bt: Update RTL8852B BT USB FW to 0x0447_9301 (bsc#1229272)
+
+-------------------------------------------------------------------
+Tue Sep 10 12:14:01 UTC 2024 - [email protected]
+
+- Update to version 20240910 (git commit 2a7b69a3fa30):
+ * realtek: rt1320: Add patch firmware of MCU
+ * i915: Update MTL DMC v2.23
+ * cirrus: cs35l56: Add firmware for Cirrus CS35L54 for some HP laptops
+
+-------------------------------------------------------------------
Old:
----
kernel-firmware-20240903.tar.xz
New:
----
copy-firmware-fix-symlink-without-compress.patch
kernel-firmware-20240912.tar.xz
BETA DEBUG BEGIN:
New:- Temporary fix for the missing symlink installations:
copy-firmware-fix-symlink-without-compress.patch
BETA DEBUG END:
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kernel-firmware.spec ++++++
--- /var/tmp/diff_new_pack.8gMtsb/_old 2024-09-15 12:33:46.521959256 +0200
+++ /var/tmp/diff_new_pack.8gMtsb/_new 2024-09-15 12:33:46.525959422 +0200
@@ -21,11 +21,11 @@
%define _firmwaredir /lib/firmware
%endif
%define __ksyms_path ^%{_firmwaredir}
-%define version_unconverted 20240903
+%define version_unconverted 20240912
# Force bzip2 instead of lzma compression (bsc#1176981)
%define _binary_payload w9.bzdio
Name: kernel-firmware
-Version: 20240903
+Version: 20240912
Release: 0
Summary: Linux kernel firmware files
License: GPL-2.0-only AND SUSE-Firmware AND GPL-2.0-or-later AND MIT
@@ -72,6 +72,7 @@
Source1101: uncompressed-post
# workarounds
Patch1: copy-file-ignore-README.patch
+Patch2: copy-firmware-fix-symlink-without-compress.patch
# for compatibility with SLE15-SP4 kernel (bsc#1209681)
Patch200: iwlwifi-WHENCE-fix.patch
BuildRequires: suse-module-tools
@@ -6721,6 +6722,7 @@
%prep
%setup -q -n kernel-firmware-%{version}
%patch -P 1 -p1
+%patch -P 2 -p1
# additional firmwares
cat %{SOURCE1} >> WHENCE
cp %{SOURCE2} %{SOURCE8} %{SOURCE9} %{SOURCE10} .
++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.8gMtsb/_old 2024-09-15 12:33:46.645964394 +0200
+++ /var/tmp/diff_new_pack.8gMtsb/_new 2024-09-15 12:33:46.649964559 +0200
@@ -1,6 +1,6 @@
<servicedata>
<service name="tar_scm">
<param
name="url">https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git</param>
- <param
name="changesrevision">96af55bd3d0b4ba52fdc8d3f2523d8c004b4f371</param></service></servicedata>
+ <param
name="changesrevision">47c72fee8fe391504e0da1dd99081d8cd76d8856</param></service></servicedata>
(No newline at EOF)
++++++ copy-firmware-fix-symlink-without-compress.patch ++++++
diff --git a/copy-firmware.sh b/copy-firmware.sh
index 6757c6ce03a3..fc096dd6daf0 100755
--- a/copy-firmware.sh
+++ b/copy-firmware.sh
@@ -136,9 +136,15 @@ grep -E '^Link:' WHENCE | sed -e 's/^Link: *//g;s/-> //g'
| while read f d; do
if test -d "$target"; then
$verbose "creating link $f -> $d"
ln -s "$d" "$destdir/$f"
- else
+ elif test -f "$target$compext"; then
$verbose "creating link $f$compext -> $d$compext"
ln -s "$d$compext" "$destdir/$f$compext"
+ elif test -f "$target"; then
+ $verbose "creating link $f -> $d"
+ ln -s "$d" "$destdir/$f"
+ else
+ $verbose "creating link (not yet existing) $f$compext ->
$d$compext"
+ ln -s "$d$compext" "$destdir/$f$compext"
fi
fi
done
++++++ kernel-firmware-20240903.tar.xz -> kernel-firmware-20240912.tar.xz ++++++
/work/SRC/openSUSE:Factory/kernel-firmware/kernel-firmware-20240903.tar.xz
/work/SRC/openSUSE:Factory/.kernel-firmware.new.29891/kernel-firmware-20240912.tar.xz
differ: char 15, line 1
++++++ licenses.list ++++++
--- /var/tmp/diff_new_pack.8gMtsb/_old 2024-09-15 12:33:46.941976657 +0200
+++ /var/tmp/diff_new_pack.8gMtsb/_new 2024-09-15 12:33:46.945976823 +0200
@@ -111,6 +111,7 @@
rtl8723bs: realtek LICENCE.rtlwifi_firmware.txt
rtl8xxxu: realtek LICENCE.rtlwifi_firmware.txt
r8169: realtek
+rt1320: realtek
vt6656: network LICENCE.via_vt6656
DFU: atheros LICENCE.atheros_firmware
LICENSE.QualcommAtheros_ar3k
Atheros: atheros LICENCE.atheros_firmware
++++++ topics.list ++++++
--- /var/tmp/diff_new_pack.8gMtsb/_old 2024-09-15 12:33:47.057981463 +0200
+++ /var/tmp/diff_new_pack.8gMtsb/_new 2024-09-15 12:33:47.061981628 +0200
@@ -115,6 +115,7 @@
rtl8xxxu: realtek
r8169: realtek
r8152: realtek
+rt1320: realtek snd-soc-rt1320-sdw
vt6656: usb-network vt6656_stage
DFU: atheros ar3k
Atheros: atheros ar3k