Compare commits

2 Commits
1.1 ... main

4 changed files with 33 additions and 13 deletions

Binary file not shown.

BIN
sof-bin-2025.05.tar.gz LFS Normal file

Binary file not shown.

View File

@@ -1,3 +1,20 @@
-------------------------------------------------------------------
Wed Jun 18 13:01:14 UTC 2025 - Takashi Iwai <tiwai@suse.com>
- Update to v2025.05:
For v2.13 series (Meteor Lake and newer), new DSP topologies added
- Modify the workaround for symlink -> directory change with Lua
script for singletrans
-------------------------------------------------------------------
Mon Apr 14 08:23:56 UTC 2025 - Takashi Iwai <tiwai@suse.com>
- Update to v2025.01.1:
* Fixes to ASUS Zenbook S 14 and S 16 bugs
* topology backports for Intel LNL systems
* topology2: add sof-lnl-cs42l43-l0-cs35l56-l23-4ch
- Update supplements
-------------------------------------------------------------------
Wed Feb 19 09:37:34 UTC 2025 - Takashi Iwai <tiwai@suse.com>

View File

@@ -24,7 +24,7 @@ Name: sof-firmware
Summary: Firmware data files for SOF Drivers
License: BSD-3-Clause
Group: Hardware/Other
Version: 2025.01
Version: 2025.05
Release: 0
URL: https://www.sofproject.org/
BuildRequires: fdupes
@@ -53,6 +53,7 @@ Supplements: modalias(pci:v00008086d00007728sv*sd*bc*sc*i*)
Supplements: modalias(pci:v00008086d00007E28sv*sd*bc*sc*i*)
Supplements: modalias(pci:v00008086d00007F50sv*sd*bc*sc*i*)
# snd-sof-pci-intel-ptl
Supplements: modalias(pci:v00008086d0000E328sv*sd*bc*sc*i*)
Supplements: modalias(pci:v00008086d0000E428sv*sd*bc*sc*i*)
# snd-sof-pci-intel-skl
Supplements: modalias(pci:v00008086d00009D71sv*sd*bc*sc*i*)
@@ -114,15 +115,17 @@ cp -a %{buildroot}%{_firmwaredir}/intel/sof-ipc4-tplg \
%fdupes -s %{buildroot}
# workaround for changing symlinked directory
%pre
if [ -L %{_firmwaredir}/intel/sof-tplg ]; then
f=$(readlink -f %{_firmwaredir}/intel/sof-tplg)
case $f in
%{_firmwaredir}/intel/*)
rm -rf $f
rm -f %{_firmwaredir}/intel/sof-tplg;;
esac
fi
%pretrans -p <lua>
if not macros then
fwdir = "/lib/firmware"
else
fwdir = macros._firmwaredir
end
path = fwdir .. "/intel/sof-tplg"
st = posix.stat(path)
if st and st.type == "link" then
os.remove(path)
end
%post
%{?regenerate_initrd_post}