Compare commits
No commits in common. "c8" and "c9-beta" have entirely different histories.
1
.alsa-sof-firmware.metadata
Normal file
1
.alsa-sof-firmware.metadata
Normal file
@ -0,0 +1 @@
|
|||||||
|
722132a6ed893d7e3d22260cb3b86377e456e906 SOURCES/sof-bin-2024.03.tar.gz
|
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,2 +1 @@
|
|||||||
SOURCES/skl_hda_dsp_generic-tplg.bin
|
SOURCES/sof-bin-2024.03.tar.gz
|
||||||
SOURCES/sof-bin-2023.09.2.tar.gz
|
|
||||||
|
@ -2,8 +2,9 @@
|
|||||||
# in the end package are expected.
|
# in the end package are expected.
|
||||||
%define _binaries_in_noarch_packages_terminate_build 0
|
%define _binaries_in_noarch_packages_terminate_build 0
|
||||||
%global _firmwarepath /usr/lib/firmware
|
%global _firmwarepath /usr/lib/firmware
|
||||||
|
%global _xz_opts -9 --check=crc32
|
||||||
|
|
||||||
%global sof_ver 2023.09.2
|
%global sof_ver 2024.03
|
||||||
#global sof_ver_pre rc1
|
#global sof_ver_pre rc1
|
||||||
%global sof_ver_rel %{?sof_ver_pre:.%{sof_ver_pre}}
|
%global sof_ver_rel %{?sof_ver_pre:.%{sof_ver_pre}}
|
||||||
%global sof_ver_pkg0 %{sof_ver}%{?sof_ver_pre:-%{sof_ver_pre}}
|
%global sof_ver_pkg0 %{sof_ver}%{?sof_ver_pre:-%{sof_ver_pre}}
|
||||||
@ -17,15 +18,17 @@
|
|||||||
Summary: Firmware and topology files for Sound Open Firmware project
|
Summary: Firmware and topology files for Sound Open Firmware project
|
||||||
Name: alsa-sof-firmware
|
Name: alsa-sof-firmware
|
||||||
Version: %{sof_ver}
|
Version: %{sof_ver}
|
||||||
Release: 1%{?sof_ver_rel}%{?dist}
|
Release: 6%{?sof_ver_rel}%{?dist}
|
||||||
# See later in the spec for a breakdown of licensing
|
# See later in the spec for a breakdown of licensing
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
URL: https://github.com/thesofproject/sof-bin
|
URL: https://github.com/thesofproject/sof-bin
|
||||||
Source: https://github.com/thesofproject/sof-bin/releases/download/%{sof_ver_pkg}/sof-bin-%{sof_ver_pkg0}.tar.gz
|
Source: https://github.com/thesofproject/sof-bin/releases/download/%{sof_ver_pkg}/sof-bin-%{sof_ver_pkg0}.tar.gz
|
||||||
%if 0%{?with_sof_addon}
|
%if 0%{?with_sof_addon}
|
||||||
Source2: https://github.com/thesofproject/sof-bin/releases/download/v%{sof_ver_addon}/sof-tplg-v%{sof_ver_addon}.tar.gz
|
Source3: https://github.com/thesofproject/sof-bin/releases/download/v%{sof_ver_addon}/sof-tplg-v%{sof_ver_addon}.tar.gz
|
||||||
%endif
|
%endif
|
||||||
Source10: skl_hda_dsp_generic-tplg.bin
|
BuildRequires: alsa-topology >= %{tplg_version}
|
||||||
|
BuildRequires: alsa-topology-utils >= %{tplg_version}
|
||||||
|
Conflicts: alsa-firmware <= 1.2.1-6
|
||||||
|
|
||||||
# noarch, since the package is firmware
|
# noarch, since the package is firmware
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
@ -46,12 +49,12 @@ This package contains the debug files for the Sound Open Firmware project.
|
|||||||
|
|
||||||
mkdir -p firmware/intel
|
mkdir -p firmware/intel
|
||||||
|
|
||||||
for d in sof sof-ipc4 sof-ace-tplg sof-tplg; do \
|
for d in sof sof-ipc4 sof-ipc4-tplg sof-tplg; do \
|
||||||
mv "${d}" firmware/intel; \
|
mv "${d}" firmware/intel; \
|
||||||
done
|
done
|
||||||
|
|
||||||
%if 0%{?with_sof_addon}
|
%if 0%{?with_sof_addon}
|
||||||
tar xvzf %{SOURCE2}
|
tar xvzf %{SOURCE3}
|
||||||
mv sof-tplg-v%{sof_ver_addon}/*.tplg firmware/intel/sof-tplg
|
mv sof-tplg-v%{sof_ver_addon}/*.tplg firmware/intel/sof-tplg
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
@ -62,11 +65,35 @@ rm -rf firmware/intel/sof-tplg/sof-imx8*
|
|||||||
# remove Mediatek firmware files
|
# remove Mediatek firmware files
|
||||||
rm -rf firmware/intel/sof-tplg/sof-mt8*
|
rm -rf firmware/intel/sof-tplg/sof-mt8*
|
||||||
|
|
||||||
# SST topology files (not SOF related, but it's a Intel hw support
|
# use xz compression
|
||||||
# and this package seems a good place to distribute them
|
xz -z %{_xz_opts} manifest.txt
|
||||||
cp %{SOURCE10} firmware/skl_hda_dsp_generic-tplg.bin
|
for d in sof sof-ipc4; do \
|
||||||
|
find -P "firmware/intel/${d}" -type f -name "*.ri" -exec xz -z %{_xz_opts} {} \;
|
||||||
|
for f in $(find -P "firmware/intel/${d}" -type l -name "*.ri"); do \
|
||||||
|
l=$(readlink "${f}"); \
|
||||||
|
n=$(dirname "${f}"); \
|
||||||
|
b=$(basename "${f}"); \
|
||||||
|
rm "${f}"; \
|
||||||
|
pushd "${n}"; \
|
||||||
|
ln -svf "${l}.xz" "${b}.xz"; \
|
||||||
|
popd; \
|
||||||
|
done
|
||||||
|
done
|
||||||
|
for d in sof-tplg sof-ipc4-tplg; do \
|
||||||
|
find -P "firmware/intel/${d}" -type f -name "*.tplg" -exec xz -z %{_xz_opts} {} \;
|
||||||
|
done
|
||||||
|
|
||||||
|
mv firmware/intel/sof-ipc4-tplg firmware/intel/sof-ace-tplg
|
||||||
|
ln -s sof-ace-tplg firmware/intel/sof-ipc4-tplg
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
# SST topology files (not SOF related, but it's a Intel hw support
|
||||||
|
# and this package seems a good place to distribute them
|
||||||
|
alsatplg -c /usr/share/alsa/topology/hda-dsp/skl_hda_dsp_generic-tplg.conf \
|
||||||
|
-o firmware/skl_hda_dsp_generic-tplg.bin
|
||||||
|
# use xz compression
|
||||||
|
xz -z %{_xz_opts} firmware/*.bin
|
||||||
|
chmod 0644 firmware/*.bin.xz
|
||||||
|
|
||||||
%install
|
%install
|
||||||
mkdir -p %{buildroot}%{_firmwarepath}
|
mkdir -p %{buildroot}%{_firmwarepath}
|
||||||
@ -75,7 +102,7 @@ cp -ra firmware/* %{buildroot}%{_firmwarepath}
|
|||||||
# gather files and directories
|
# gather files and directories
|
||||||
FILEDIR=$(pwd)
|
FILEDIR=$(pwd)
|
||||||
pushd %{buildroot}/%{_firmwarepath}
|
pushd %{buildroot}/%{_firmwarepath}
|
||||||
find -P . -name "*.ri" | sed -e '/^.$/d' > $FILEDIR/alsa-sof-firmware.files
|
find -P . -name "*.ri.xz" | sed -e '/^.$/d' >> $FILEDIR/alsa-sof-firmware.files
|
||||||
#find -P . -name "*.tplg" | sed -e '/^.$/d' >> $FILEDIR/alsa-sof-firmware.files
|
#find -P . -name "*.tplg" | sed -e '/^.$/d' >> $FILEDIR/alsa-sof-firmware.files
|
||||||
find -P . -name "*.ldc" | sed -e '/^.$/d' > $FILEDIR/alsa-sof-firmware.debug-files
|
find -P . -name "*.ldc" | sed -e '/^.$/d' > $FILEDIR/alsa-sof-firmware.debug-files
|
||||||
find -P . -type d | sed -e '/^.$/d' > $FILEDIR/alsa-sof-firmware.dirs
|
find -P . -type d | sed -e '/^.$/d' > $FILEDIR/alsa-sof-firmware.dirs
|
||||||
@ -88,31 +115,50 @@ cat alsa-sof-firmware.files
|
|||||||
%files -f alsa-sof-firmware.files
|
%files -f alsa-sof-firmware.files
|
||||||
%license LICENCE*
|
%license LICENCE*
|
||||||
%doc README*
|
%doc README*
|
||||||
%doc manifest.txt
|
%doc manifest.txt.xz
|
||||||
%dir %{_firmwarepath}
|
%dir %{_firmwarepath}
|
||||||
|
|
||||||
# Licence: 3-clause BSD
|
# Licence: 3-clause BSD
|
||||||
%{_firmwarepath}/*.bin
|
%{_firmwarepath}/*.bin.xz
|
||||||
|
|
||||||
# Licence: 3-clause BSD
|
# Licence: 3-clause BSD
|
||||||
# .. for files with suffix .tplg
|
# .. for files with suffix .tplg
|
||||||
%{_firmwarepath}/intel/sof-tplg/*.tplg
|
%{_firmwarepath}/intel/sof-tplg/*.tplg.xz
|
||||||
%{_firmwarepath}/intel/sof-ace-tplg/*.tplg
|
%{_firmwarepath}/intel/sof-ace-tplg/*.tplg.xz
|
||||||
|
%{_firmwarepath}/intel/sof-ipc4-tplg
|
||||||
|
|
||||||
# Licence: SOF (3-clause BSD plus others)
|
# Licence: SOF (3-clause BSD plus others)
|
||||||
# .. for files with suffix .ri
|
# .. for files with suffix .ri
|
||||||
|
|
||||||
%files debug -f alsa-sof-firmware.debug-files
|
%files debug -f alsa-sof-firmware.debug-files
|
||||||
|
|
||||||
|
%pretrans -p <lua>
|
||||||
|
path = "%{_firmwarepath}/intel/sof-tplg"
|
||||||
|
st = posix.stat(path)
|
||||||
|
if st and st.type == "link" then
|
||||||
|
os.remove(path)
|
||||||
|
end
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Thu Nov 16 2023 Jaroslav Kysela <perex@perex.cz> - 2023.09.1-2
|
* Mon Jun 17 2024 Jaroslav Kysela <jkysela@redhat.com> - 2024.03-5
|
||||||
|
- Update to v2024.03
|
||||||
|
- Add AVS topology files v2024.02
|
||||||
|
|
||||||
|
* Wed Dec 20 2023 Jaroslav Kysela <perex@perex.cz> - 2023.12-1
|
||||||
|
- Update to v2023.12
|
||||||
|
|
||||||
|
* Thu Nov 16 2023 Jaroslav Kysela <perex@perex.cz> - 2023.09.2-1
|
||||||
- Update to v2023.09.2
|
- Update to v2023.09.2
|
||||||
- SPDX license
|
- SPDX license
|
||||||
|
|
||||||
|
* Thu Jun 15 2023 Jaroslav Kysela <perex@perex.cz> - 2.2.5-2
|
||||||
|
- add sof-rpl-rt711-l0-rt1316-l12-rt714-l3.tplg for Dell SKU 0BDA
|
||||||
|
- add xz compression support (with CRC32)
|
||||||
|
|
||||||
* Mon May 15 2023 Jaroslav Kysela <perex@perex.cz> - 2.2.5-1
|
* Mon May 15 2023 Jaroslav Kysela <perex@perex.cz> - 2.2.5-1
|
||||||
- Update to v2.2.5
|
- Update to v2.2.5
|
||||||
|
|
||||||
* Mon Jan 9 2023 Jaroslav Kysela <perex@perex.cz> - 2.2.4-2
|
* Mon Jan 9 2023 Jaroslav Kysela <perex@perex.cz> - 2.2.4-1
|
||||||
- Update to v2.2.4
|
- Update to v2.2.4
|
||||||
|
|
||||||
* Wed Dec 7 2022 Jaroslav Kysela <perex@perex.cz> - 2.2.3-1
|
* Wed Dec 7 2022 Jaroslav Kysela <perex@perex.cz> - 2.2.3-1
|
||||||
@ -124,33 +170,55 @@ cat alsa-sof-firmware.files
|
|||||||
* Mon Jun 20 2022 Jaroslav Kysela <perex@perex.cz> - 2.1.1-1
|
* Mon Jun 20 2022 Jaroslav Kysela <perex@perex.cz> - 2.1.1-1
|
||||||
- Update to v2.1.1 + v2.1.1a (topology)
|
- Update to v2.1.1 + v2.1.1a (topology)
|
||||||
|
|
||||||
* Wed May 11 2022 Jaroslav Kysela <perex@perex.cz> - 1.9.3-3
|
* Mon Dec 20 2021 Jaroslav Kysela <perex@perex.cz> - 1.9.3-2
|
||||||
- Add sof-adl-rt711-l2-rt1316-l01.tplg topology file
|
|
||||||
|
|
||||||
* Thu Dec 16 2021 Jaroslav Kysela <perex@perex.cz> - 1.9.3-1
|
|
||||||
- Update to v1.9.3
|
- Update to v1.9.3
|
||||||
|
|
||||||
* Tue Nov 23 2021 Jaroslav Kysela <perex@perex.cz> - 1.9.2-1
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.8-2
|
||||||
- Update to v1.9.2
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||||
|
Related: rhbz#1991688
|
||||||
* Tue Oct 26 2021 Jaroslav Kysela <perex@perex.cz> - 1.9-1
|
|
||||||
- Update to v1.9
|
|
||||||
|
|
||||||
* Thu Jul 22 2021 Jaroslav Kysela <perex@perex.cz> - 1.8-1
|
* Thu Jul 22 2021 Jaroslav Kysela <perex@perex.cz> - 1.8-1
|
||||||
- Update to v1.8
|
- Update to v1.8
|
||||||
- Add SST Skylake HDA topology binary
|
|
||||||
|
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 1.6.1-5
|
||||||
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||||
|
|
||||||
|
* Thu Mar 11 2021 Jaroslav Kysela <perex@perex.cz> - 1.6.1-4
|
||||||
|
- Add SST Skylake HDA topology binary (bug#1933423)
|
||||||
|
|
||||||
|
* Fri Mar 5 2021 Jaroslav Kysela <perex@perex.cz> - 1.6.1-3
|
||||||
|
- Add TGL-H firmware files
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
* Sun Jan 3 2021 Jaroslav Kysela <perex@perex.cz> - 1.6.1-1
|
* Sun Jan 3 2021 Jaroslav Kysela <perex@perex.cz> - 1.6.1-1
|
||||||
- Update to v1.6.1
|
- Update to v1.6.1
|
||||||
|
|
||||||
* Thu Dec 10 2020 Jaroslav Kysela <perex@perex.cz> - 1.6-2
|
* Thu Dec 10 2020 Jaroslav Kysela <perex@perex.cz> - 1.6-4
|
||||||
- Update to v1.6 (Dec 9)
|
- Update to v1.6 (Dec 9)
|
||||||
|
|
||||||
* Wed Nov 11 2020 Jaroslav Kysela <perex@perex.cz> - 1.6-1
|
* Thu Nov 19 2020 Jaroslav Kysela <perex@perex.cz> - 1.6-3
|
||||||
|
- Update to v1.6 (Nov 19)
|
||||||
|
|
||||||
|
* Wed Oct 14 2020 Jaroslav Kysela <perex@perex.cz> - 1.6-1
|
||||||
- Update to v1.6 (Oct 13)
|
- Update to v1.6 (Oct 13)
|
||||||
|
|
||||||
* Mon Jun 8 2020 Jaroslav Kysela <perex@perex.cz> - 1.5-2
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.5-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jun 1 2020 Jaroslav Kysela <perex@perex.cz> - 1.5-1
|
||||||
- Update to v1.5
|
- Update to v1.5
|
||||||
|
|
||||||
* Tue Apr 21 2020 Jaroslav Kysela <perex@perex.cz> - 1.4.2-2
|
* Tue May 12 2020 Jaroslav Kysela <perex@perex.cz> - 1.4.2-6
|
||||||
- Initial version (Open Sound Firmware v1.4.2)
|
- Fix the upgrade (make /usr/lib/firmware/intel/sof-tplg directory again)
|
||||||
|
- Remove the version from all paths
|
||||||
|
|
||||||
|
* Thu Apr 30 2020 Jaroslav Kysela <perex@perex.cz> - 1.4.2-5
|
||||||
|
- Add missing symlink for sof-cfl.ri
|
||||||
|
|
||||||
|
* Thu Mar 12 2020 Jaroslav Kysela <perex@perex.cz> - 1.4.2-4
|
||||||
|
- Add missing symlink for sof-cml.ri
|
||||||
|
|
||||||
|
* Mon Mar 2 2020 Jaroslav Kysela <perex@perex.cz> - 1.4.2-3
|
||||||
|
- Initial version, SOF firmware 1.4.2
|
||||||
|
Loading…
Reference in New Issue
Block a user