-
Notifications
You must be signed in to change notification settings - Fork 93
/
mstflint.spec.in
311 lines (240 loc) · 8.99 KB
/
mstflint.spec.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
%{!?ibmadlib: %define ibmadlib libibmad-devel}
%{!?name: %define name mstflint}
%{!?version: %define version 4.30.0}
%{!?release: %define release 1}
%{!?buildtype: %define buildtype "native"}
%{!?noinband: %define noinband 0}
%{!?nodc: %define nodc 0}
%{!?enablecs: %define enablecs 0}
%{!?nopenssl: %define nopenssl 0}
%{!?enablexml2: %define enablexml2 0}
%{!?enablefwmgr: %define enablefwmgr 0}
%{!?enableadbgenerictools: %define enableadbgenerictools 1}
%{!?CONF_DIR: %define CONF_DIR /etc/mstflint}
%define mstflint_python_tools %{_libdir}/mstflint/python_tools
%define mstflint_sdkdir %{_libdir}/mstflint/sdk
%define _unpackaged_files_terminate_build 0
%define debug_package %{nil}
Summary: Mellanox firmware burning application
Name: %{name}
Version: %{version}
Release: %{release}
License: GPL/BSD
Url: http://openfabrics.org
Group: System Environment/Base
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}
Source: %{name}-%{version}.tar.gz
ExclusiveArch: i386 i486 i586 i686 x86_64 ia64 ppc ppc64 ppc64le arm64 aarch64
%if 0%{?suse_version}
%define openssl_devel_lib libopenssl-devel
%define expat_devel_lib libexpat-devel
%else
%define openssl_devel_lib openssl-devel
%define expat_devel_lib expat-devel
%endif
%if "%{nopenssl}" == "0"
BuildRequires: %{openssl_devel_lib}
%endif
%if "%{enableadbgenerictools}" == "1"
BuildRequires: %{expat_devel_lib}
BuildRequires: xz-devel
%endif
BuildRequires: zlib-devel %{ibmadlib}
%description
This package contains firmware update tool, vpd dump and register dump tools
for network adapters based on Mellanox Technologies chips.
%prep
%setup -q
%build
MSTFLINT_VERSION_STR="%{name} %{version}-%{release}"
%if %{nodc}
config_flags="$config_flags --disable-dc"
%endif
%if %{noinband}
config_flags="$config_flags --disable-inband"
%endif
%if %{nopenssl}
config_flags="$config_flags --disable-openssl"
%endif
%if %{enablecs}
config_flags="$config_flags --enable-cs"
%endif
%if %{enablexml2}
config_flags="$config_flags --enable-xml2"
%endif
%if %{enablefwmgr}
config_flags="$config_flags --enable-fw-mgr"
%endif
%if %{enableadbgenerictools}
config_flags="$config_flags --enable-adb-generic-tools"
%endif
%if %{buildtype} == "ppc"
config_flags="$config_flags --host=ppc-linux"
%endif
%if %{buildtype} == "ppc64"
config_flags="$config_flags --host=ppc64-linux --enable-static-libstdcpp=yes"
%endif
%if %{buildtype} == "ppc64le"
config_flags="$config_flags --host=powerpc64le-linux-gnu --enable-dynamic-ld=yes"
%endif
%if %{buildtype} == "arm64"
config_flags="$config_flags --host arm"
%endif
%configure ${config_flags} MSTFLINT_VERSION_STR="${MSTFLINT_VERSION_STR}"
make
%install
rm -rf $RPM_BUILD_ROOT
make DESTDIR=${RPM_BUILD_ROOT} install
# remove unpackaged files from the buildroot
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
# create softlinks to old mtcr header and lib locations
# link mtcr_ul to old location
mkdir -p %{buildroot}/%{_includedir}/mtcr_ul
ln -s %{_includedir}/mstflint/mtcr.h %{buildroot}/%{_includedir}/mtcr_ul/mtcr.h
ln -s %{_includedir}/mstflint/mtcr_com_defs.h %{buildroot}/%{_includedir}/mtcr_ul/mtcr_com_defs.h
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%{_bindir}/mstmread
%{_bindir}/mstmwrite
%{_bindir}/mstflint
%{_bindir}/mstregdump
%{_bindir}/mstmtserver
%{_bindir}/mstvpd
%{_bindir}/mstmcra
%{_bindir}/mstconfig
%{_bindir}/mstfwreset
%{_bindir}/mstcongestion
%{_bindir}/mstprivhost
%{_bindir}/mstfwtrace
%{_bindir}/mstresourcedump
%{_bindir}/mstresourceparse
%if %{enablefwmgr}
%{_bindir}/mstfwmanager
%{_bindir}/mstarchive
%{CONF_DIR}/ca-bundle.crt
%endif
%if %{enableadbgenerictools}
%{_bindir}/mstreg
%{_bindir}/mstlink
%endif
%{_includedir}/mstflint/cmdif/icmd_cif_common.h
%{_includedir}/mstflint/cmdif/icmd_cif_open.h
%{_includedir}/mstflint/common/compatibility.h
%{_includedir}/mstflint/mtcr.h
%{_includedir}/mstflint/mtcr_com_defs.h
%{_includedir}/mstflint/mtcr_mf.h
%{_includedir}/mstflint/tools_layouts/adb_to_c_utils.h
%{_includedir}/mstflint/tools_layouts/icmd_layouts.h
%{_includedir}/mtcr_ul/mtcr.h
%{_includedir}/mtcr_ul/mtcr_com_defs.h
%{_libdir}/mstflint/libmtcr_ul.a
%{_libdir}/libmtcr_ul.a
%{mstflint_python_tools}/tools_version.py
%{mstflint_python_tools}/mft_logger.py
%{mstflint_python_tools}/mlxpci/*.py
%{mstflint_python_tools}/mstfwtrace/*.py
%{mstflint_python_tools}/mstfwreset/mstfwreset.py
%{mstflint_python_tools}/mstfwreset/mlxfwresetlib/*.py
%{mstflint_python_tools}/mtcr.py
%{mstflint_python_tools}/cmtcr.so
%{mstflint_python_tools}/cmdif.py
%{mstflint_python_tools}/ccmdif.so
%{mstflint_python_tools}/regaccess.py
%{mstflint_python_tools}/regaccess_hca_ext_structs.py
%{mstflint_python_tools}/regaccess_switch_ext_structs.py
%{mstflint_python_tools}/rreg_access.so
%{mstflint_python_tools}/dev_mgt.py
%{mstflint_python_tools}/c_dev_mgt.so
%{mstflint_python_tools}/mstprivhost/mstprivhost.py
# Usually, python2 is the default python on a machine,
# so we want to ignore python2 erros caused by incompatiblity with python3 syntax
%define _python_bytecompile_errors_terminate_build 0
%{mstflint_sdkdir}/libresource_dump_sdk.so
%{mstflint_python_tools}/resourcetools/*.py
%{mstflint_python_tools}/resourcetools/segments/*.py
%{mstflint_python_tools}/resourcetools/resourcedump_lib/*.py
%{mstflint_python_tools}/resourcetools/resourcedump_lib/commands/*.py
%{mstflint_python_tools}/resourcetools/resourcedump_lib/cresourcedump/*.py
%{mstflint_python_tools}/resourcetools/resourcedump_lib/fetchers/*.py
%{mstflint_python_tools}/resourcetools/resourcedump_lib/filters/*.py
%{mstflint_python_tools}/resourcetools/resourcedump_lib/utils/*.py
%{mstflint_python_tools}/resourcetools/resourcedump_lib/validation/*.py
%{mstflint_python_tools}/resourcetools/resourceparse_lib/*.py
%{mstflint_python_tools}/resourcetools/resourceparse_lib/parsers/*.py
%{mstflint_python_tools}/resourcetools/resourceparse_lib/resource_data/*.py
%{mstflint_python_tools}/resourcetools/resourceparse_lib/utils/*.py
%{_datadir}/mstflint
%{_mandir}/man1/*
%changelog
* Thu Sep 8 2022 Alex Blago <[email protected]>
MFT 4.22.0 Updates
* Sun Jul 31 2022 Tomer Tubi <[email protected]>
MFT 4.21.0 Updates
* Tue May 31 2022 Tomer Tubi <[email protected]>
MFT 4.20.1 Updates
* Thu Apr 28 2022 Tomer Tubi <[email protected]>
MFT 4.20.0 Updates
* Thu Mar 24 2022 Tomer Tubi <[email protected]>
MFT 4.19.0 Updates
* Thu Nov 25 2021 Tomer Tubi <[email protected]>
MFT 4.18.0 Updates
* Thu Jun 10 2021 Konstantin Maksatov <[email protected]>
MFT 4.17.0 Updates
* Mon Mar 22 2021 Konstantin Maksatov <[email protected]>
Updated mlxconfig, fixed several bugs
* Thu Dec 17 2020 Konstantin Maksatov <[email protected]>
MFT 4.16.0 Updates.
* Wed Jun 24 2020 Konstantin Maksatov <[email protected]>
Added BlueField-2 adapter cards support.
* Tue Mar 31 2020 Eran Jakoby <[email protected]>
MFT 4.14.0 Updates.
* Tue Dec 31 2019 Eran Jakoby <[email protected]>
MFT 4.13.3 Updates. Added new tools: mstresourcedump.
* Mon Sep 23 2019 Dan Goldberg <[email protected]>
Added conditional lib name of the dependencies to support both RH and SLES naming conventions.
* Wed May 22 2019 Eran Jakoby <[email protected]>
MFT 4.12.0 Updates. Added new tools: mstreg, mstfwtrace and mstlink.
* Wed Nov 21 2018 Dan Goldberg <[email protected]>
MFT 4.11.0 Updates. Added new tools: mlxarchive and mstprivhost.
* Sun Jul 01 2018 Dan Goldberg <[email protected]>
MFT 4.10.0 Updates
* Mon Jul 17 2017 Adham Masarwah <[email protected]>
Adding mlxfwreset to mstflint
* Mon May 08 2017 Adrian Chiris <[email protected]>
MFT 4.7.0 Updates
* Tue Jan 10 2017 Adham Masarwah <[email protected]>
Removed hca_self_test.ofed installation from the package
* Mon Jan 9 2017 Adham Masarwah <[email protected]>
MFT 4.6.0 Updates
* Tue May 17 2016 Adrian Chiris <[email protected]>
MFT 4.4.0 Updates
* Wed Mar 23 2016 Adrian Chiris <[email protected]>
MFT 4.4.0 Updates
* Mon Jan 11 2016 Adrian Chiris <[email protected]>
MFT 4.3.0 Updates
* Wed Aug 26 2015 Adrian Chiris <[email protected]>
MFT 4.1.0 Updates
* Fri Jun 05 2015 Adrian Chiris <[email protected]>
MFT 4.0.1 Updates
* Thu Feb 05 2015 Adrian Chiris <[email protected]>
MFT 4.0.0 Updates
* Sun Dec 07 2014 Tomer Cohen <[email protected]>
Added support for multiple architectures
* Sun Oct 12 2014 Oren Kladnitsky <[email protected]>
MFT 3.7.1
* Thu Jul 31 2014 Oren Kladnitsky <[email protected]>
MFT 3.7.0 Updates
* Mon Mar 31 2014 Oren Kladnitsky <[email protected]>
MFT 3.6.0 Updates
* Tue Dec 24 2013 Oren Kladnitsky <[email protected]>
MFT 3.5.0 Updates
* Wed Mar 20 2013 Oren Kladnitsky <[email protected]>
MFT 3.0.0
* Thu Dec 4 2008 Oren Kladnitsky <[email protected]>
Added hca_self_test.ofed installation
* Sun Dec 23 2007 Oren Kladnitsky <[email protected]>
Added mtcr.h installation
* Fri Dec 07 2007 Ira Weiny <[email protected]> 1.0.0
initial creation