Compare commits
8 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f251f25187 | ||
|
|
3450ede718 | ||
|
|
33a7866494 | ||
|
|
fc17f6e5d0 | ||
|
|
48ed0592d1 | ||
|
|
34392a71d5 | ||
|
|
65c418ed3f | ||
|
|
d80f9a748e |
3 changed files with 66 additions and 10 deletions
7
.gitignore
vendored
7
.gitignore
vendored
|
|
@ -23,3 +23,10 @@
|
|||
/sof-bin-2023.09.tar.gz
|
||||
/sof-bin-2023.09.1.tar.gz
|
||||
/sof-bin-2023.09.2.tar.gz
|
||||
/sof-bin-2023.12.1.tar.gz
|
||||
/avs-topology_2024.02.tar.gz
|
||||
/sof-bin-2024.03.tar.gz
|
||||
/sof-bin-2024.06.tar.gz
|
||||
/sof-bin-2024.09.tar.gz
|
||||
/sof-bin-2024.09.1.tar.gz
|
||||
/sof-bin-2024.09.2.tar.gz
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
%global _firmwarepath /usr/lib/firmware
|
||||
%global _xz_opts -9 --check=crc32
|
||||
|
||||
%global sof_ver 2023.12
|
||||
%global sof_ver 2024.09.2
|
||||
#global sof_ver_pre rc1
|
||||
%global sof_ver_rel %{?sof_ver_pre:.%{sof_ver_pre}}
|
||||
%global sof_ver_pkg0 %{sof_ver}%{?sof_ver_pre:-%{sof_ver_pre}}
|
||||
|
|
@ -18,13 +18,13 @@
|
|||
Summary: Firmware and topology files for Sound Open Firmware project
|
||||
Name: alsa-sof-firmware
|
||||
Version: %{sof_ver}
|
||||
Release: 3%{?sof_ver_rel}%{?dist}
|
||||
Release: 2%{?sof_ver_rel}%{?dist}
|
||||
# See later in the spec for a breakdown of licensing
|
||||
License: BSD-3-Clause
|
||||
License: BSD-3-Clause Apache-2.0
|
||||
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
|
||||
%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
|
||||
BuildRequires: alsa-topology >= %{tplg_version}
|
||||
BuildRequires: alsa-topology-utils >= %{tplg_version}
|
||||
|
|
@ -49,12 +49,14 @@ This package contains the debug files for the Sound Open Firmware project.
|
|||
|
||||
mkdir -p firmware/intel
|
||||
|
||||
for d in sof sof-ipc4 sof-ace-tplg sof-tplg; do \
|
||||
for d in sof sof-ipc4 sof-ipc4-lib sof-ipc4-tplg sof-tplg; do \
|
||||
mv "${d}" firmware/intel; \
|
||||
done
|
||||
|
||||
ln -s sof-ipc4-tplg firmware/intel/sof-ace-tplg
|
||||
|
||||
%if 0%{?with_sof_addon}
|
||||
tar xvzf %{SOURCE2}
|
||||
tar xvzf %{SOURCE3}
|
||||
mv sof-tplg-v%{sof_ver_addon}/*.tplg firmware/intel/sof-tplg
|
||||
%endif
|
||||
|
||||
|
|
@ -77,9 +79,23 @@ for d in sof sof-ipc4; do \
|
|||
pushd "${n}"; \
|
||||
ln -svf "${l}.xz" "${b}.xz"; \
|
||||
popd; \
|
||||
done
|
||||
done; \
|
||||
done
|
||||
for d in sof-tplg sof-ace-tplg; do \
|
||||
for d in sof-ipc4-lib; do \
|
||||
for e in bin llext; do \
|
||||
find -P "firmware/intel/${d}" -type f -name "*.${e}" -exec xz -z %{_xz_opts} {} \;
|
||||
for f in $(find -P "firmware/intel/${d}" -type l -name "*.${e}"); do \
|
||||
l=$(readlink "${f}"); \
|
||||
n=$(dirname "${f}"); \
|
||||
b=$(basename "${f}"); \
|
||||
rm "${f}"; \
|
||||
pushd "${n}"; \
|
||||
ln -svf "${l}.xz" "${b}.xz"; \
|
||||
popd; \
|
||||
done; \
|
||||
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
|
||||
|
||||
|
|
@ -101,6 +117,8 @@ FILEDIR=$(pwd)
|
|||
pushd %{buildroot}/%{_firmwarepath}
|
||||
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 "*.llext.xz" | sed -e '/^.$/d' >> $FILEDIR/alsa-sof-firmware.files
|
||||
find -P intel/sof-ipc4-lib -name "*.bin.xz" | sed -e '/^.$/d' >> $FILEDIR/alsa-sof-firmware.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
|
||||
popd
|
||||
|
|
@ -121,7 +139,8 @@ cat alsa-sof-firmware.files
|
|||
# Licence: 3-clause BSD
|
||||
# .. for files with suffix .tplg
|
||||
%{_firmwarepath}/intel/sof-tplg/*.tplg.xz
|
||||
%{_firmwarepath}/intel/sof-ace-tplg/*.tplg.xz
|
||||
%{_firmwarepath}/intel/sof-ipc4-tplg/*.tplg.xz
|
||||
%{_firmwarepath}/intel/sof-ace-tplg
|
||||
|
||||
# Licence: SOF (3-clause BSD plus others)
|
||||
# .. for files with suffix .ri
|
||||
|
|
@ -135,7 +154,37 @@ if st and st.type == "link" then
|
|||
os.remove(path)
|
||||
end
|
||||
|
||||
path1 = "%{_firmwarepath}/intel/sof-ace-tplg"
|
||||
path2 = "%{_firmwarepath}/intel/sof-ipc4-tplg"
|
||||
st = posix.stat(path1)
|
||||
if st and st.type == "directory" then
|
||||
os.rename(path1, path2)
|
||||
end
|
||||
|
||||
%changelog
|
||||
* Wed Dec 18 2024 Jaroslav Kysela <perex@perex.cz> - 2024.09.2-2
|
||||
- Add sof-ipc4-lib directory
|
||||
|
||||
* Fri Dec 6 2024 Jaroslav Kysela <perex@perex.cz> - 2024.09.2-1
|
||||
- Update to v2024.09.2
|
||||
|
||||
* Mon Nov 11 2024 Jaroslav Kysela <perex@perex.cz> - 2024.09.1-1
|
||||
- Update to v2024.09.1
|
||||
|
||||
* Fri Sep 27 2024 Jaroslav Kysela <perex@perex.cz> - 2024.09-1
|
||||
- Update to v2024.09
|
||||
|
||||
* Tue Sep 3 2024 Jaroslav Kysela <perex@perex.cz> - 2024.06-1
|
||||
- Update to v2024.06
|
||||
- Remove AVS topology files (linux-firmware is the main source now)
|
||||
|
||||
* Wed Apr 3 2024 Jaroslav Kysela <perex@perex.cz> - 2024.03-2
|
||||
- Update to v2024.03
|
||||
|
||||
* Tue Mar 5 2024 Jaroslav Kysela <perex@perex.cz> - 2023.12.1-1
|
||||
- Update to v2023.12.1
|
||||
- Add AVS topology files v2024.02
|
||||
|
||||
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2023.12-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (sof-bin-2023.12.tar.gz) = ed43e7597c93140b15499ba17bae1866dcf1e2959d910e81b3831e4db2224a1dcff790ef21afcd610d7cc9309251a08351bae1c959ded18e5e28a6b24ae99506
|
||||
SHA512 (sof-bin-2024.09.2.tar.gz) = fadb9078705e0813897650e19166ad0d81710f8ba08ecb74de413a0bd7b27d73f9dcedd4583687f9deefd22ccb78b56ede8fbc5ab6fbd56e181c6b63be816a18
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue