integ/base/pf-bb-config/centos/pf-bb-config.spec
Douglas Henrique Koerich 2dcc4bd8a3 Customize fpga_5gnr config for 1 VF
Instead of using the distribution of UL/DL queues between 2 VFs like in
the original fpga_5gnr/fpga_5gnr_config_vf.cfg file, all of them are
set for usage by the first VF, only.

Task: 43044
Story: 2009036
Signed-off-by: Douglas Henrique Koerich <douglashenrique.koerich@windriver.com>
Change-Id: Ie7524eea807e7a49a304475e3451f717954c3ea5
2021-08-18 12:27:14 -04:00

51 lines
1.6 KiB
RPMSpec

%global git_sha d7d5f1ddd17b4c80e3e0d6ce87660926f58f8585
Summary: PF BBDEV (baseband device) Configuration Application.
Name: pf-bb-config
Version: 21.6
Release: 0%{?_tis_dist}.%{tis_patch_ver}
License: Apache-2.0
Group: base
Packager: Wind River <info@windriver.com>
URL: https://github.com/intel/pf-bb-config/tree/v21.6
Source0: %{name}-%{git_sha}.tar.gz
Patch0: Reject-device-configuration-if-not-enabled.patch
Patch1: Fix-check-return-of-configure_device.patch
Patch2: Customize-fpga_5gnr-config-for-1-VF.patch
BuildRequires: gcc
BuildRequires: inih
%define debug_package %{nil}
%description
The PF BBDEV (baseband device) Configuration Application "pf_bb_config" provides a means to
configure the baseband device at the host-level. The program accesses the configuration
space and sets the various parameters through memory-mapped IO read/writes.
%prep
%setup
%patch0 -p1
%patch1 -p1
%patch2 -p1
%build
make
%install
install -d -m 755 %{buildroot}%{_bindir}
install -d -m 755 %{buildroot}%{_datadir}/pf-bb-config/acc100
install -p -D -m 700 pf_bb_config %{buildroot}%{_bindir}/pf_bb_config
install -p -D -m 700 acc100/acc100_config_1vf_4g5g.cfg %{buildroot}%{_datadir}/pf-bb-config/acc100/acc100_config_1vf_4g5g.cfg
install -p -D -m 700 acc100/acc100_config_vf_5g.cfg %{buildroot}%{_datadir}/pf-bb-config/acc100/acc100_config_vf_5g.cfg
install -p -D -m 700 fpga_5gnr/fpga_5gnr_config_vf.cfg %{buildroot}%{_datadir}/pf-bb-config/fpga_5gnr/fpga_5gnr_config_vf.cfg
install -p -D -m 644 README.md %{buildroot}%{_datadir}/pf-bb-config/README.md
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%{_bindir}/*
%{_datadir}/*