updated to v2.0
This commit is contained in:
parent
ff79b9a3ed
commit
f5b5267312
3 changed files with 26 additions and 5 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -11,3 +11,4 @@
|
|||
/sof-bin-v1.9.tar.gz
|
||||
/sof-bin-v1.9.2.tar.gz
|
||||
/sof-bin-v1.9.3.tar.gz
|
||||
/sof-bin-v2.0.tar.gz
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
%define _binaries_in_noarch_packages_terminate_build 0
|
||||
%global _firmwarepath /usr/lib/firmware
|
||||
|
||||
%global sof_ver 1.9.3
|
||||
%global sof_ver 2.0
|
||||
#global sof_ver_pre rc1
|
||||
%global sof_ver_rel %{?sof_ver_pre:.%{sof_ver_pre}}
|
||||
%global sof_ver_pkg v%{sof_ver}%{?sof_ver_pre:-%{sof_ver_pre}}
|
||||
|
|
@ -54,11 +54,27 @@ rm -rf firmware/intel/sof-tplg/sof-imx8*
|
|||
# remove Mediatek firmware files
|
||||
rm -rf firmware/intel/sof-tplg/sof-mt8*
|
||||
|
||||
# use xz compression
|
||||
find -P firmware/intel/sof -type f -name "*.ri" -exec xz -z9 {} \;
|
||||
for f in $(find -P firmware/intel/sof -type l -name "*.ri"); do \
|
||||
l=$(readlink "${f}"); \
|
||||
d=$(dirname "${f}"); \
|
||||
b=$(basename "${f}"); \
|
||||
rm "${f}"; \
|
||||
pushd "${d}"; \
|
||||
ln -svf "${l}.xz" "${b}.xz"; \
|
||||
popd; \
|
||||
done
|
||||
find -P firmware/intel/sof-tplg -type f -name "*.tplg" -exec xz -z9 {} \;
|
||||
|
||||
%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 -z9 firmware/*.bin
|
||||
chmod 0644 firmware/*.bin.xz
|
||||
|
||||
%install
|
||||
mkdir -p %{buildroot}%{_firmwarepath}
|
||||
|
|
@ -67,7 +83,7 @@ cp -ra firmware/* %{buildroot}%{_firmwarepath}
|
|||
# gather files and directories
|
||||
FILEDIR=$(pwd)
|
||||
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 "*.ldc" | sed -e '/^.$/d' > $FILEDIR/alsa-sof-firmware.debug-files
|
||||
find -P . -type d | sed -e '/^.$/d' > $FILEDIR/alsa-sof-firmware.dirs
|
||||
|
|
@ -83,11 +99,11 @@ cat alsa-sof-firmware.files
|
|||
%dir %{_firmwarepath}
|
||||
|
||||
# Licence: 3-clause BSD
|
||||
%{_firmwarepath}/*.bin
|
||||
%{_firmwarepath}/*.bin.xz
|
||||
|
||||
# Licence: 3-clause BSD
|
||||
# .. for files with suffix .tplg
|
||||
%{_firmwarepath}/intel/sof-tplg
|
||||
%{_firmwarepath}/intel/sof-tplg/*.tplg.xz
|
||||
|
||||
# Licence: SOF (3-clause BSD plus others)
|
||||
# .. for files with suffix .ri
|
||||
|
|
@ -102,6 +118,10 @@ if st and st.type == "link" then
|
|||
end
|
||||
|
||||
%changelog
|
||||
* Thu Jan 27 2022 Jaroslav Kysela <perex@perex.cz> - 2.0-1
|
||||
- Update to v2.0
|
||||
- Use xz compression
|
||||
|
||||
* Wed Dec 15 2021 Jaroslav Kysela <perex@perex.cz> - 1.9.3-1
|
||||
- Update to v1.9.3
|
||||
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (sof-bin-v1.9.3.tar.gz) = 0c04bf47ecf65d3352b730e79968cb020211c274f64a3cc21e4c5e49c5a9706ab4d541aaea931e72c1bcc67fcde6387bc6bf952a33691aaab06e6b93aa73a024
|
||||
SHA512 (sof-bin-v2.0.tar.gz) = 44b0c662598e95dfb5dd2dda86d08e3f136c6f99b1ffd4f55b65ea2be35480736c4d751b5108c15b00369a3bb8955e7d9ad410cc93beeb09e8620baf3ce2070c
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue