a5071d6937
After some reports of Mt.Bryce hang with the current version (21.3) of pf-bb-config and from Intel's feedback this utility is being upgraded to latest version tagged as 21.6. Also, another configuration file is taken from the official repo at GitHub, which is supposed to fit better with the new version and the current device usage requirements. Partial-Bug: #1933372 Signed-off-by: Douglas Henrique Koerich <douglashenrique.koerich@windriver.com> Change-Id: If175cc5b33b59fa2095d1b466dcbc8b724287817
46 lines
1.4 KiB
RPMSpec
46 lines
1.4 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
|
|
|
|
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
|
|
|
|
%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 644 README.md %{buildroot}%{_datadir}/pf-bb-config/README.md
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%{_bindir}/*
|
|
%{_datadir}/*
|