2024-01-05 20:20:53 +01:00
|
|
|
#%global sof_commit 72a04d57d04c2df6e9dbf4eba0a98f40c252ee0b
|
2024-01-05 20:20:53 +01:00
|
|
|
Name: alsa-sof-firmware
|
2024-01-05 20:20:53 +01:00
|
|
|
Version: 2.2.2
|
2024-01-05 20:20:53 +01:00
|
|
|
Release: 1mamba
|
2024-01-05 20:20:53 +01:00
|
|
|
Summary: Firmware and topology files for Sound Open Firmware project
|
|
|
|
Group: System/Kernel and Hardware
|
|
|
|
Vendor: openmamba
|
|
|
|
Distribution: openmamba
|
|
|
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
|
|
|
URL: https://github.com/thesofproject/sof-bin
|
2024-01-05 20:20:53 +01:00
|
|
|
Source: https://github.com/thesofproject/sof-bin/releases/download/v%{version}/sof-bin-v%{version}.tar.gz
|
|
|
|
#Source: https://github.com/thesofproject/sof-bin.git/v%{version}/sof-bin-%{version}.tar.bz2
|
|
|
|
#Source1: https://github.com/thesofproject/sof.git/v%{version}/sof-%{version}.tar.bz2
|
2024-01-05 20:20:53 +01:00
|
|
|
License: BSD
|
|
|
|
## AUTOBUILDREQ-BEGIN
|
|
|
|
## AUTOBUILDREQ-END
|
|
|
|
|
|
|
|
%description
|
|
|
|
Firmware and topology files for Sound Open Firmware project.
|
|
|
|
|
2024-01-05 20:20:53 +01:00
|
|
|
%package debug
|
|
|
|
Requires: alsa-sof-firmware
|
|
|
|
Summary: Debug files for Sound Open Firmware project
|
|
|
|
License: BSD
|
2024-01-05 20:20:53 +01:00
|
|
|
|
2024-01-05 20:20:53 +01:00
|
|
|
%description debug
|
|
|
|
This package contains the debug files for the Sound Open Firmware project.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n sof-bin-v%{version}
|
|
|
|
|
|
|
|
mkdir -p firmware/intel/sof
|
|
|
|
|
|
|
|
# we have the version in the package name
|
|
|
|
mv sof-v%{version}/* firmware/intel/sof
|
|
|
|
|
|
|
|
# move topology files
|
|
|
|
mv sof-tplg-v%{version} firmware/intel/sof-tplg
|
|
|
|
|
|
|
|
# remove NXP firmware files
|
|
|
|
rm LICENCE.NXP
|
|
|
|
rm -rf firmware/intel/sof-tplg/sof-imx8*
|
2024-01-05 20:20:53 +01:00
|
|
|
|
|
|
|
%build
|
2024-01-05 20:20:53 +01:00
|
|
|
#%ifarch x86_64 aarch64
|
|
|
|
#cd firmware/intel/sof/tools
|
|
|
|
#% cmake -d build
|
|
|
|
#
|
|
|
|
#% make
|
|
|
|
#%endif
|
2024-01-05 20:20:53 +01:00
|
|
|
|
|
|
|
%install
|
|
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
|
|
|
2024-01-05 20:20:53 +01:00
|
|
|
install -d -m0755 %{buildroot}/usr/lib/firmware
|
|
|
|
cp -ra firmware/* %{buildroot}/usr/lib/firmware/
|
|
|
|
|
|
|
|
FILEDIR=$(pwd)
|
|
|
|
pushd %{buildroot}/usr/lib/firmware
|
|
|
|
find -P . -name "*.ri" | 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
|
|
|
|
popd
|
|
|
|
|
|
|
|
sed -i -e 's:^./::' alsa-sof-firmware.{files,debug-files,dirs}
|
|
|
|
sed -i -e 's!^!/usr/lib/firmware/!' alsa-sof-firmware.{files,debug-files,dirs}
|
|
|
|
sed -e 's/^/%%dir /' alsa-sof-firmware.dirs >> alsa-sof-firmware.files
|
|
|
|
cat alsa-sof-firmware.files
|
2024-01-05 20:20:53 +01:00
|
|
|
|
|
|
|
%clean
|
|
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
|
|
|
2024-01-05 20:20:53 +01:00
|
|
|
%pretrans -p <lua>
|
|
|
|
path = "/lib/firmware/intel/sof-tplg"
|
|
|
|
st = posix.stat(path)
|
|
|
|
if st and st.type == "link" then
|
|
|
|
os.remove(path)
|
|
|
|
end
|
2024-01-05 20:20:53 +01:00
|
|
|
|
2024-01-05 20:20:53 +01:00
|
|
|
%files -f alsa-sof-firmware.files
|
2024-01-05 20:20:53 +01:00
|
|
|
%defattr(-,root,root)
|
2024-01-05 20:20:53 +01:00
|
|
|
%dir /usr/lib/firmware/intel/sof-tplg
|
|
|
|
/usr/lib/firmware/intel/sof-tplg/*
|
2024-01-05 20:20:53 +01:00
|
|
|
%doc LICENCE.Intel
|
2024-01-05 20:20:53 +01:00
|
|
|
|
|
|
|
%files debug -f alsa-sof-firmware.debug-files
|
2024-01-05 20:20:53 +01:00
|
|
|
|
|
|
|
%changelog
|
2024-01-05 20:20:53 +01:00
|
|
|
* Mon Sep 26 2022 Automatic Build System <autodist@mambasoft.it> 2.2.2-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 20:20:53 +01:00
|
|
|
* Thu May 05 2022 Automatic Build System <autodist@mambasoft.it> 2.1.1-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 20:20:53 +01:00
|
|
|
* Fri Feb 04 2022 Automatic Build System <autodist@mambasoft.it> 2.0-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 20:20:53 +01:00
|
|
|
* Thu Dec 16 2021 Automatic Build System <autodist@mambasoft.it> 1.9.3-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 20:20:53 +01:00
|
|
|
* Thu Nov 25 2021 Automatic Build System <autodist@mambasoft.it> 1.9.2-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 20:20:53 +01:00
|
|
|
* Sat Oct 16 2021 Automatic Build System <autodist@mambasoft.it> 1.9-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 20:20:53 +01:00
|
|
|
* Wed Sep 22 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 1.8-3mamba
|
|
|
|
- remove version for installation paths (based on Fedora specfile)
|
|
|
|
|
2024-01-05 20:20:53 +01:00
|
|
|
* Fri Jun 25 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 1.8-2mamba
|
|
|
|
- remove x86_64 only prebuilt binaries
|
|
|
|
|
|
|
|
* Wed Jun 23 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 1.8-1mamba
|
|
|
|
- update to 1.8
|
|
|
|
|
2024-01-05 20:20:53 +01:00
|
|
|
* Thu Feb 04 2021 Automatic Build System <autodist@mambasoft.it> 1.6.1-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-05 20:20:53 +01:00
|
|
|
* Sat Nov 14 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 1.6-1mamba
|
|
|
|
- update to 1.6
|
|
|
|
|
2024-01-05 20:20:53 +01:00
|
|
|
* Wed Apr 08 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 1.4.2-1mamba
|
|
|
|
- package created using the webbuild interface
|