68 lines
1.8 KiB
RPMSpec
68 lines
1.8 KiB
RPMSpec
%global __remake_config 1
|
|
|
|
Name: mstflint
|
|
Summary: Mellanox firmware burning tool
|
|
Version: 4.24.0
|
|
Release: %autorelease
|
|
License: GPLv2+ or BSD
|
|
Url: https://github.com/Mellanox/%{name}
|
|
Source0: https://github.com/Mellanox/%{name}/releases/download/v%{version}-1/%{name}-%{version}-1.tar.gz
|
|
Group: Applications/System
|
|
|
|
Patch4: add-default-link-flags-for-shared-libraries.patch
|
|
Patch6: replace-mlxfwreset-with-mstfwreset-in-mstflint-message.patch
|
|
|
|
BuildRequires: make
|
|
BuildRequires: libstdc++-devel, zlib-devel, libibmad-devel, gcc-c++, gcc
|
|
BuildRequires: libcurl-devel, boost-devel, libxml2-devel, openssl-devel
|
|
BuildRequires: expat-devel
|
|
%if %{__remake_config}
|
|
BuildRequires: libtool, autoconf, automake
|
|
%endif
|
|
Obsoletes: openib-mstflint <= 1.4 openib-tvflash <= 0.9.2 tvflash <= 0.9.0
|
|
ExcludeArch: s390 s390x %{arm}
|
|
Requires: python3
|
|
|
|
%description
|
|
This package contains firmware update tool, vpd dump and register dump tools
|
|
for network adapters based on Mellanox Technologies chips.
|
|
|
|
%prep
|
|
%setup -q -n %{name}-%{version}
|
|
|
|
%patch4 -p1
|
|
%patch6 -p1
|
|
|
|
find . -type f -iname '*.[ch]' -exec chmod a-x '{}' ';'
|
|
find . -type f -iname '*.cpp' -exec chmod a-x '{}' ';'
|
|
|
|
%build
|
|
%if %{__remake_config}
|
|
./autogen.sh
|
|
%endif
|
|
%configure --enable-fw-mgr --enable-adb-generic-tools
|
|
%make_build
|
|
|
|
%install
|
|
%make_install
|
|
# Remove the devel files that we don't ship
|
|
rm -fr %{buildroot}%{_includedir}
|
|
find %{buildroot} -type f -name '*.la' -delete
|
|
find %{buildroot} -type f -name '*.a' -delete
|
|
|
|
# Mark these shared libs executable for find-debuginfo.sh to find them.
|
|
# https://docs.fedoraproject.org/en-US/packaging-guidelines/Debuginfo/
|
|
chmod +x %{buildroot}/%{_libdir}/mstflint/python_tools/*.so
|
|
|
|
%files
|
|
%doc README
|
|
%_bindir/*
|
|
%{_sysconfdir}/mstflint
|
|
%{_libdir}/mstflint
|
|
|
|
%{_datadir}/mstflint
|
|
%{_mandir}/man1/*
|
|
|
|
%changelog
|
|
%autochangelog
|