View | Details | Raw Unified | Return to bug 242038 | Differences between
and this patch

Collapse All | Expand All

(-)sysutils/mstflint/Makefile (-2 / +56 lines)
Lines 2-8 Link Here
2
2
3
PORTNAME=	mstflint
3
PORTNAME=	mstflint
4
DISTVERSIONPREFIX=	v
4
DISTVERSIONPREFIX=	v
5
DISTVERSION=	4.12.0-1
5
DISTVERSION=	4.13.3-2
6
CATEGORIES=	sysutils
6
CATEGORIES=	sysutils
7
7
8
MAINTAINER=	slavash@FreeBSD.org
8
MAINTAINER=	slavash@FreeBSD.org
Lines 11-21 Link Here
11
LICENSE=	GPLv2
11
LICENSE=	GPLv2
12
LICENSE_FILE=	${WRKSRC}/LICENSE
12
LICENSE_FILE=	${WRKSRC}/LICENSE
13
13
14
USES=		autoreconf libtool
14
USES=		autoreconf libtool gmake
15
15
16
OPTIONS_DEFINE=	FWMANAGER ADAB STATIC
17
OPTIONS_SUB=	yes
18
19
FWMANAGER_DESC=	Build with mstfwmanager and mstarchive
20
ADAB_DESC=	Build with mstreg and mstlink
21
STATIC_DESC=	Static binary (disable curl support)
22
STATIC_CONFIGURE_ON=	--enable-all-static --disable-dc \
23
			--disable-openssl --disable-inband
24
25
LDFLAGS+=	-L${LOCALBASE}/lib
26
CPPFLAGS+=	-I${LOCALBASE}/include
27
16
GNU_CONFIGURE=	yes
28
GNU_CONFIGURE=	yes
17
29
18
USE_GITHUB=	yes
30
USE_GITHUB=	yes
19
GH_ACCOUNT=	Mellanox
31
GH_ACCOUNT=	Mellanox
20
32
33
.include <bsd.port.options.mk>
34
35
.if ${PORT_OPTIONS:MSTATIC}
36
.else
37
USES+=	ssl
38
.endif
39
40
.if ${PORT_OPTIONS:MADAB}
41
CONFIGURE_ARGS+=	--enable-adb-generic-tools
42
.if ${PORT_OPTIONS:MSTATIC}
43
BUILD_DEPENDS+=	xmlwf:textproc/expat2 \
44
		boost-libs>0:devel/boost-libs
45
.else
46
LIB_DEPENDS+=	libexpat.so:textproc/expat2 \
47
		libboost_regex.so:devel/boost-libs
48
.endif
49
.endif
50
51
.if ${PORT_OPTIONS:MFWMANAGER}
52
CONFIGURE_ARGS+=	--enable-fw-mgr
53
.if ${PORT_OPTIONS:MSTATIC}
54
BUILD_DEPENDS+=	xmllint:textproc/libxml2 \
55
		${LOCALBASE}/include/boost/algorithm/string/detail/formatter_regex.hpp:devel/boost-libs
56
EXTRA_PATCHES+=	${PATCHDIR}/extrat-patch-configure.ac \
57
		${PATCHDIR}/extrat-patch-mlxarchive_Makefile.am \
58
		${PATCHDIR}/extrat-patch-mlxarchive_mlxarchive_mfa2.cpp \
59
		${PATCHDIR}/extrat-patch-mlxfwupdate_Makefile.am \
60
		${PATCHDIR}/extrat-patch-mlxfwupdate_server_request.cpp
61
.else
62
LIB_DEPENDS+=	libxml2.so:textproc/libxml2 \
63
		libboost_regex.so:devel/boost-libs \
64
		libcurl.so:ftp/curl
65
RUN_DEPENDS+=	ca_root_nss>=0:security/ca_root_nss
66
.endif
67
.endif
68
69
post-install:
70
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/mstflint/python_tools/rreg_access.so
71
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/mstflint/python_tools/ccmdif.so
72
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/mstflint/python_tools/cmtcr.so
73
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/mstflint/python_tools/c_dev_mgt.so
74
21
.include <bsd.port.mk>
75
.include <bsd.port.mk>
(-)sysutils/mstflint/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1562536530
1
TIMESTAMP = 1578500867
2
SHA256 (Mellanox-mstflint-v4.12.0-1_GH0.tar.gz) = 5cbf8924f33f813dd636bc25681b07d8940aa7803ff1f995266ac86ff30cbf35
2
SHA256 (Mellanox-mstflint-v4.13.3-2_GH0.tar.gz) = 8bed4f44f857d7e5acce7100f6a402c2571e47778a8f66ab419a77bc12788ae6
3
SIZE (Mellanox-mstflint-v4.12.0-1_GH0.tar.gz) = 3716706
3
SIZE (Mellanox-mstflint-v4.13.3-2_GH0.tar.gz) = 3809937
(-)sysutils/mstflint/files/extrat-patch-configure.ac (+36 lines)
Line 0 Link Here
1
--- configure.ac.orig	2020-01-05 16:50:06.000000000 +0100
2
+++ configure.ac	2020-01-09 00:15:46.179518000 +0100
3
@@ -104,12 +104,10 @@ AC_ARG_ENABLE(fw-mgr,
4
              [enable_fw_mgr="no"])
5
 AC_MSG_RESULT($enable_fw_mgr)
6
 if test "x$enable_fw_mgr" = "xyes"; then
7
-    AC_CHECK_HEADER(curl/curl.h,,AC_MSG_ERROR([cannot find curl/curl.h . this header is needed for compiling fw manager tool]))
8
     AC_CHECK_HEADER(zlib.h,,AC_MSG_ERROR([cannot find zlib.h . this header is needed for compiling fw manager tool]))
9
     AC_CHECK_LIB(z, uncompress,, AC_MSG_ERROR([cannot find zlib uncompress() function.]))
10
     AC_CHECK_HEADER(lzma.h,,AC_MSG_ERROR([Cannot find lzma.h.]))
11
     AC_CHECK_LIB(boost_regex, regcompA,, AC_MSG_ERROR([cannot find boost_regex regcompA() function. Try re-installing the library...]))
12
-    CURL_INC_DIR=/usr/include/curl/
13
 fi
14
 
15
 # Adabe
16
@@ -133,8 +131,6 @@ if test "x$enable_adb_generic_tools" = "xyes"; then
17
     AC_LANG_POP([C++])
18
 fi
19
 
20
-AC_SUBST(CURL_INC_DIR)
21
-
22
 AM_CONDITIONAL(ENABLE_FWMGR, [test "x$enable_fw_mgr" = "xyes" ])
23
 AC_SUBST(ENABLE_FWMGR)
24
 
25
@@ -352,11 +348,6 @@ AS_IF([test "x$enable_cs" = "xyes" || test "x$enable_o
26
 AS_IF([test "x$enable_openssl" = "xyes"], [
27
         AC_CONFIG_FILES(mlxsign_lib/Makefile)
28
     ])
29
-
30
-if [ test "x$enable_openssl" = "xno" ] && \
31
-    [ test "x$enable_fw_mgr" = "xyes" ] ; then
32
-    AC_MSG_ERROR([--enable-fw-mgr cannot be used with --disabled-openssl.])
33
-fi
34
 
35
 AS_IF([test "x$enable_fw_mgr" = "xyes"], [
36
         AC_CONFIG_FILES(mlxfwupdate/Makefile)
(-)sysutils/mstflint/files/extrat-patch-mlxarchive_Makefile.am (+26 lines)
Line 0 Link Here
1
--- mlxarchive/Makefile.am.orig	2020-01-05 16:50:06.000000000 +0100
2
+++ mlxarchive/Makefile.am	2020-01-09 14:15:21.405697000 +0100
3
@@ -20,8 +20,6 @@ DEV_MGT_DIR = $(USER_DIR)/dev_mgt
4
 TOOLS_CRYPTO_DIR = $(USER_DIR)/tools_crypto
5
 CMDIF_DIR = $(USER_DIR)/cmdif
6
 
7
-CURL_LIBS = -lcurl  -lssl -lcrypto -lrt
8
-
9
 INCLUDES = $(JSON_CFLAGS) -I. \
10
            -I$(USER_DIR) -I$(USER_DIR)/libmfa \
11
            -I$(MTCR_DIR) -I$(USER_DIR)/include/mtcr_ul \
12
@@ -64,13 +62,13 @@ mstarchive_LDADD = libmstarchive.a\
13
                    $(USER_DIR)/xz_utils/libxz_utils.a\
14
                    $(USER_DIR)/ext_libs/minixz/libminixz.a\
15
 		   $(USER_DIR)/xz_utils/libxz_utils.a \
16
-                   $(CURL_LIBS)\
17
                    -lboost_regex -lboost_filesystem -lboost_system \
18
                    -llzma -lm $(LIBSTD_CPP) ${LDL}
19
 
20
 if ENABLE_OPENSSL
21
 mstarchive_LDADD += $(top_srcdir)/mlxsign_lib/libmlxsign.a -lcrypto
22
 else
23
+AM_CXXFLAGS += -DNO_OPEN_SSL
24
 endif
25
 
26
 if ENABLE_CS
(-)sysutils/mstflint/files/extrat-patch-mlxarchive_mlxarchive_mfa2.cpp (+29 lines)
Line 0 Link Here
1
--- mlxarchive/mlxarchive_mfa2.cpp.orig	2020-01-05 16:50:06.000000000 +0100
2
+++ mlxarchive/mlxarchive_mfa2.cpp	2020-01-09 14:20:54.186228000 +0100
3
@@ -39,7 +39,9 @@
4
  */
5
 
6
 #include <xz_utils/xz_utils.h>
7
+#ifndef NO_OPEN_SSL
8
 #include <mlxsign_lib/mlxsign_lib.h>
9
+#endif
10
 #include "mlxarchive_mfa2.h"
11
 #include "mlxarchive_mfa2_utils.h"
12
 
13
@@ -120,6 +122,7 @@ void MFA2::pack(vector<u_int8_t>& buff)
14
     xz_compress_crc32(9, componentsBlockBuff.data(), componentsBlockBuff.size(),
15
             zippedComponentBlockBuff.data(), zippedSize);
16
 
17
+#ifndef NO_OPEN_SSL
18
     //compute descriptors SHA256
19
     vector<u_int8_t> descriptorsBuff;
20
     packDescriptors(descriptorsBuff);
21
@@ -136,7 +139,7 @@ void MFA2::pack(vector<u_int8_t>& buff)
22
     mlxSignSHA256 << zippedComponentBlockBuff;
23
     mlxSignSHA256.getDigest(digest);
24
     _packageDescriptor.setSHA256(digest);
25
-
26
+#endif
27
 }
28
 
29
 /*void MFA2::update(vector<u_int8_t>& buff)
(-)sysutils/mstflint/files/extrat-patch-mlxfwupdate_Makefile.am (+38 lines)
Line 0 Link Here
1
--- mlxfwupdate/Makefile.am.orig	2020-01-09 18:28:23.591163000 +0100
2
+++ mlxfwupdate/Makefile.am	2020-01-09 18:35:23.551040000 +0100
3
@@ -45,10 +45,6 @@ MTCR_UL_LIB = $(MTCR_UL_DIR)/libmtcr_ul.a
4
 XML_FLAGS = -DUSE_XML -DLIBXML_STATIC
5
 XML_LIBS = -lxml2 $(ZLIB_LIB)
6
 
7
-CURL_LIBS = -lcurl  -lssl -lcrypto -lrt
8
-
9
-CURL_FLAGS = -DCURL_STATICLIB
10
-
11
 common_INCLUDES =  -I$(USER_DIR)/common\
12
             -I$(USER_DIR)/\
13
             -I$(USER_DIR)/include/mtcr_ul\
14
@@ -59,7 +55,6 @@ common_INCLUDES =  -I$(USER_DIR)/common\
15
             $(JSON_CFLAGS)\
16
             -I$(USER_DIR)/mlxfwops/lib\
17
             -I$(USER_DIR)/pldmlib\
18
-            -I$(CURL_INC_DIR)\
19
             -I$(USER_DIR)/mft_utils\
20
             -I$(USER_DIR)/dev_mgt
21
 
22
@@ -100,7 +95,6 @@ common_LDADD  = $(USER_DIR)/dev_mgt/libdev_mgt.a\
23
                         $(USER_DIR)/tools_layouts/libtools_layouts.a\
24
                         $(USER_DIR)/fw_comps_mgr/libfw_comps_mgr.a\
25
                         $(XML_LIBS)\
26
-                        $(CURL_LIBS)\
27
                         -lm $(LIBSTD_CPP) ${LDL}
28
                         
29
 if ENABLE_OPENSSL
30
@@ -118,6 +112,6 @@ common_LDADD += $(top_srcdir)/mad_ifc/libmad_ifc.a
31
 else
32
 endif
33
 
34
-mstfwmanager_CXXFLAGS =  -DMSTFLINT -DUSE_CURL $(AM_CXXFLAGS) $(CURL_FLAGS) $(XML_FLAGS) -I$(MTCR_UL_DIR) $(common_INCLUDES) 
35
+mstfwmanager_CXXFLAGS =  -DMSTFLINT $(AM_CXXFLAGS) $(XML_FLAGS) -I$(MTCR_UL_DIR) $(common_INCLUDES) 
36
 mstfwmanager_SOURCES  = $(common_SOURCEES)
37
-mstfwmanager_LDADD    = $(common_LDADD) $(MTCR_UL_LIB) -lz
38
+mstfwmanager_LDADD    = $(common_LDADD) $(MTCR_UL_LIB) -lz -llzma
(-)sysutils/mstflint/files/extrat-patch-mlxfwupdate_server_request.cpp (+23 lines)
Line 0 Link Here
1
--- mlxfwupdate/server_request.cpp.orig	2020-01-09 00:45:10.200149000 +0100
2
+++ mlxfwupdate/server_request.cpp	2020-01-09 00:46:56.459627000 +0100
3
@@ -43,9 +43,7 @@
4
 
5
 
6
 using namespace std;
7
-#ifndef USE_CURL
8
-#define USE_CURL
9
-#endif
10
+#undef USE_CURL
11
 
12
 extern int abort_request;
13
 
14
@@ -62,7 +60,9 @@ ServerRequest::ServerRequest(const char *url, const ch
15
     _show_progress = show_progress;
16
     _ceritifcate   = certificate;
17
     _numberOfRetrials = numberOfRetrials;
18
+#ifdef USE_CURL
19
     _headers       = NULL;
20
+#endif
21
     if (proxy != NULL) {
22
         if (proxy[0] != 0) {
23
             _UseProxy = 1;
(-)sysutils/mstflint/files/patch-configure.ac (+65 lines)
Line 0 Link Here
1
--- configure.ac.orig	2020-01-05 16:50:06.000000000 +0100
2
+++ configure.ac	2020-01-09 00:28:38.419054000 +0100
3
@@ -100,7 +100,7 @@ fi
4
 AC_MSG_CHECKING(--enable-fw-mgr argument)
5
 AC_ARG_ENABLE(fw-mgr,
6
              [  --enable-fw-mgr        Enable compiling mstfwmanager tool and features],
7
-             [enable_fw_mgr="yes"],
8
+             [enable_fw_mgr=$enableval],
9
              [enable_fw_mgr="no"])
10
 AC_MSG_RESULT($enable_fw_mgr)
11
 if test "x$enable_fw_mgr" = "xyes"; then
12
@@ -116,7 +116,7 @@ fi
13
 AC_MSG_CHECKING(--enable-adb-generic-tools argument)
14
 AC_ARG_ENABLE(adb-generic-tools,
15
              [  --enable-adb-generic-tools        Enable compiling the following tools which depends on ADABE: mstreg and mstlink],
16
-             [enable_adb_generic_tools="yes"],
17
+             [enable_adb_generic_tools=$enableval],
18
              [enable_adb_generic_tools="no"])
19
 AC_MSG_RESULT($enable_adb_generic_tools)
20
 if test "x$enable_adb_generic_tools" = "xyes"; then
21
@@ -143,7 +143,7 @@ AC_SUBST(ENABLE_FWMGR)
22
 AC_MSG_CHECKING(--enable-xml2 argument)
23
 AC_ARG_ENABLE(xml2,
24
             [  --enable-xml2           Enable mstflint libxml2 dependent features],
25
-            [enable_xml2="yes"],
26
+            [enable_xml2=$enableval],
27
             [enable_xml2="no"])
28
 AC_MSG_RESULT($enable_xml2)
29
 if test [ "x$enable_xml2" = "xyes" ] || [ test "x$enable_fw_mgr" = "xyes" ]; then
30
@@ -185,7 +185,7 @@ AM_CONDITIONAL(ENABLE_INBAND, [test  "x$enable_inband"
31
 AC_MSG_CHECKING(--enable-cs argument)
32
 AC_ARG_ENABLE(cs,
33
             [  --enable-cs             Enable mstflint "checksum" command, dependant of openssl library],
34
-            [enable_cs="yes"],
35
+            [enable_cs=$enableval],
36
             [enable_cs="no"])
37
 AC_MSG_RESULT($enable_cs)
38
 if test "x$enable_cs" = "xyes"; then
39
@@ -211,7 +211,7 @@ fi
40
 AC_MSG_CHECKING(--enable-all-static argument)
41
 AC_ARG_ENABLE([all_static],
42
     AS_HELP_STRING([--enable-all-static], [Enable creating none dynamic executables]),
43
-    [enable_all_static="yes"],
44
+    [enable_all_static=$enableval],
45
     [enable_all_static="no"])
46
 AC_MSG_RESULT($enable_all_static)
47
 
48
@@ -237,7 +237,7 @@ AC_ARG_ENABLE([static_libstdcpp],
49
     AS_HELP_STRING([--enable-static-libstdcpp], [Enable link static to libstdc++]))
50
 
51
 AS_IF([test "x$enable_static_libstdcpp" = "xyes" -o "x$enable_all_static" = "xyes" ], [
52
-  CXXFLAGS="$CXXFLAGS -static-libstdc++ -static-libgcc"
53
+  CXXFLAGS="$CXXFLAGS -static"
54
 ])
55
 
56
 AC_ARG_ENABLE([dynamic_ld],
57
@@ -267,7 +267,7 @@ AS_IF([test "x$INIPARSER_SYSTEM_AVAILABLE" = "xyes" ],
58
     CXXFLAGS="$CXXFLAGS -DHAVE_INI_PARSER"
59
 ])
60
 
61
-AC_SEARCH_LIBS([json_object_get], [json-c jason], [JSON_SYSTEM_AVAILABLE="yes"],[
62
+AC_SEARCH_LIBS([json_object_get], [jsoncpp], [JSON_SYSTEM_AVAILABLE="yes"],[
63
     JSON_SYSTEM_AVAILABLE="no"
64
     JSON_CFLAGS='-I$(top_srcdir)/ext_libs/json'
65
     AC_SUBST(JSON_CFLAGS)
(-)sysutils/mstflint/files/patch-mlxfwupdate_Makefile.am (+11 lines)
Line 0 Link Here
1
--- mlxfwupdate/Makefile.am.orig	2019-11-15 19:39:03 UTC
2
+++ mlxfwupdate/Makefile.am
3
@@ -37,7 +37,7 @@ MTCR_DIR = $(USER_DIR)/${MTCR_CONFIG_DIR}
4
 bin_PROGRAMS = mstfwmanager
5
 
6
 docdir=$(INSTALL_BASEDIR)/etc/mstflint
7
-dist_doc_DATA=certificate/ca-bundle.crt
8
+#dist_doc_DATA=certificate/ca-bundle.crt
9
 
10
 MTCR_UL_DIR = $(USER_DIR)/${MTCR_CONF_DIR}
11
 MTCR_UL_LIB = $(MTCR_UL_DIR)/libmtcr_ul.a
(-)sysutils/mstflint/files/patch-mlxfwupdate_cmd__line__params.cpp (+14 lines)
Line 0 Link Here
1
--- mlxfwupdate/cmd_line_params.cpp.orig	2019-11-16 07:49:07 UTC
2
+++ mlxfwupdate/cmd_line_params.cpp
3
@@ -97,9 +97,9 @@ CmdLineParams::CmdLineParams()
4
 
5
 #else
6
     #ifdef MSTFLINT
7
-    certificate = (string)ROOT_PATH + "etc/mstflint/ca-bundle.crt";
8
+    certificate = (string)ROOT_PATH + "/etc/ssl/cert.pem";
9
     #else
10
-    certificate = (string)ROOT_PATH + "etc/mft/ca-bundle.crt";
11
+    certificate = (string)ROOT_PATH + "/etc/ssl/cert.pem";
12
     #endif
13
 #endif
14
 }
(-)sysutils/mstflint/pkg-plist (+53 lines)
Lines 1-14 Link Here
1
%%FWMANAGER%%bin/mstarchive
1
bin/mstconfig
2
bin/mstconfig
2
bin/mstcongestion
3
bin/mstcongestion
3
bin/mstflint
4
bin/mstflint
5
%%FWMANAGER%%bin/mstfwmanager
4
bin/mstfwreset
6
bin/mstfwreset
5
bin/mstfwtrace
7
bin/mstfwtrace
8
%%ADAB%%bin/mstlink
6
bin/mstmcra
9
bin/mstmcra
7
bin/mstmread
10
bin/mstmread
8
bin/mstmtserver
11
bin/mstmtserver
9
bin/mstmwrite
12
bin/mstmwrite
10
bin/mstprivhost
13
bin/mstprivhost
14
%%ADAB%%bin/mstreg
11
bin/mstregdump
15
bin/mstregdump
16
bin/mstresourcedump
12
bin/mstvpd
17
bin/mstvpd
13
include/mstflint/cmdif/icmd_cif_common.h
18
include/mstflint/cmdif/icmd_cif_common.h
14
include/mstflint/cmdif/icmd_cif_open.h
19
include/mstflint/cmdif/icmd_cif_open.h
Lines 17-24 Link Here
17
include/mstflint/mtcr_com_defs.h
22
include/mstflint/mtcr_com_defs.h
18
include/mstflint/tools_layouts/adb_to_c_utils.h
23
include/mstflint/tools_layouts/adb_to_c_utils.h
19
include/mstflint/tools_layouts/icmd_layouts.h
24
include/mstflint/tools_layouts/icmd_layouts.h
25
%%ADAB%%lib/libadb_parser.a
20
lib/libcmdif.a
26
lib/libcmdif.a
21
lib/libdev_mgt.a
27
lib/libdev_mgt.a
28
%%ADAB%%lib/libmodules_lib.a
29
%%FWMANAGER%%lib/libmstarchive.a
30
%%ADAB%%lib/libmstreg_lib.a
31
%%ADAB%%lib/libprint_util_lib.a
22
lib/libreg_access.a
32
lib/libreg_access.a
23
lib/libtools_layouts.a
33
lib/libtools_layouts.a
24
lib/mstflint/libmtcr_ul.a
34
lib/mstflint/libmtcr_ul.a
Lines 31-36 Link Here
31
lib/mstflint/python_tools/mlxpci/binary_file.py
41
lib/mstflint/python_tools/mlxpci/binary_file.py
32
lib/mstflint/python_tools/mlxpci/mlxpci_lib.py
42
lib/mstflint/python_tools/mlxpci/mlxpci_lib.py
33
lib/mstflint/python_tools/mstfwreset/mlxfwresetlib/__init__.py
43
lib/mstflint/python_tools/mstfwreset/mlxfwresetlib/__init__.py
44
lib/mstflint/python_tools/mstfwreset/mlxfwresetlib/cmd_reg_mfrl.py
45
lib/mstflint/python_tools/mstfwreset/mlxfwresetlib/cmd_reg_mpcir.py
34
lib/mstflint/python_tools/mstfwreset/mlxfwresetlib/logger.py
46
lib/mstflint/python_tools/mstfwreset/mlxfwresetlib/logger.py
35
lib/mstflint/python_tools/mstfwreset/mlxfwresetlib/mcra.py
47
lib/mstflint/python_tools/mstfwreset/mlxfwresetlib/mcra.py
36
lib/mstflint/python_tools/mstfwreset/mlxfwresetlib/mlnx_peripheral_components.py
48
lib/mstflint/python_tools/mstfwreset/mlxfwresetlib/mlnx_peripheral_components.py
Lines 43-55 Link Here
43
lib/mstflint/python_tools/mstfwtrace/mstfwtrace.py
55
lib/mstflint/python_tools/mstfwtrace/mstfwtrace.py
44
lib/mstflint/python_tools/mstfwtrace/secure_fw_trace.py
56
lib/mstflint/python_tools/mstfwtrace/secure_fw_trace.py
45
lib/mstflint/python_tools/mstprivhost/mstprivhost.py
57
lib/mstflint/python_tools/mstprivhost/mstprivhost.py
58
lib/mstflint/python_tools/mstresourcedump/__init__.py
59
lib/mstflint/python_tools/mstresourcedump/commands/CommandFactory.py
60
lib/mstflint/python_tools/mstresourcedump/commands/DumpCommand.py
61
lib/mstflint/python_tools/mstresourcedump/commands/QueryCommand.py
62
lib/mstflint/python_tools/mstresourcedump/commands/ResDumpCommand.py
63
lib/mstflint/python_tools/mstresourcedump/commands/__init__.py
64
lib/mstflint/python_tools/mstresourcedump/fetchers/CapabilityFetcher.py
65
lib/mstflint/python_tools/mstresourcedump/fetchers/ResourceDumpFetcher.py
66
lib/mstflint/python_tools/mstresourcedump/fetchers/__init__.py
67
lib/mstflint/python_tools/mstresourcedump/filters/SegmentsFilter.py
68
lib/mstflint/python_tools/mstresourcedump/filters/__init__.py
69
lib/mstflint/python_tools/mstresourcedump/mstresourcedump.py
70
lib/mstflint/python_tools/mstresourcedump/resource_data/DataPrinter.py
71
lib/mstflint/python_tools/mstresourcedump/resource_data/DumpData.py
72
lib/mstflint/python_tools/mstresourcedump/resource_data/QueryData.py
73
lib/mstflint/python_tools/mstresourcedump/resource_data/__init__.py
74
lib/mstflint/python_tools/mstresourcedump/segments/CommandSegment.py
75
lib/mstflint/python_tools/mstresourcedump/segments/ErrorSegment.py
76
lib/mstflint/python_tools/mstresourcedump/segments/InfoSegment.py
77
lib/mstflint/python_tools/mstresourcedump/segments/MenuRecord.py
78
lib/mstflint/python_tools/mstresourcedump/segments/MenuSegment.py
79
lib/mstflint/python_tools/mstresourcedump/segments/NoticeSegment.py
80
lib/mstflint/python_tools/mstresourcedump/segments/RefSegment.py
81
lib/mstflint/python_tools/mstresourcedump/segments/ResourceSegment.py
82
lib/mstflint/python_tools/mstresourcedump/segments/Segment.py
83
lib/mstflint/python_tools/mstresourcedump/segments/SegmentCreator.py
84
lib/mstflint/python_tools/mstresourcedump/segments/SegmentFactory.py
85
lib/mstflint/python_tools/mstresourcedump/segments/TerminateSegment.py
86
lib/mstflint/python_tools/mstresourcedump/segments/__init__.py
87
lib/mstflint/python_tools/mstresourcedump/utils/Exceptions.py
88
lib/mstflint/python_tools/mstresourcedump/utils/constants.py
89
lib/mstflint/python_tools/mstresourcedump/validation/ArgToMenuVerifier.py
90
lib/mstflint/python_tools/mstresourcedump/validation/CapabilityValidator.py
91
lib/mstflint/python_tools/mstresourcedump/validation/__init__.py
46
lib/mstflint/python_tools/mtcr.py
92
lib/mstflint/python_tools/mtcr.py
47
lib/mstflint/python_tools/regaccess.py
93
lib/mstflint/python_tools/regaccess.py
48
lib/mstflint/python_tools/rreg_access.so
94
lib/mstflint/python_tools/rreg_access.so
49
lib/mstflint/python_tools/tools_version.py
95
lib/mstflint/python_tools/tools_version.py
50
man/man1/mstarchive.1.gz
96
man/man1/mstarchive.1.gz
97
man/man1/mstcongestion.1.gz
51
man/man1/mstconfig.1.gz
98
man/man1/mstconfig.1.gz
52
man/man1/mstflint.1.gz
99
man/man1/mstflint.1.gz
100
man/man1/mstfwmanager.1.gz
101
man/man1/mstfwreset.1.gz
53
man/man1/mstfwtrace.1.gz
102
man/man1/mstfwtrace.1.gz
54
man/man1/mstlink.1.gz
103
man/man1/mstlink.1.gz
55
man/man1/mstmcra.1.gz
104
man/man1/mstmcra.1.gz
Lines 59-64 Link Here
59
man/man1/mstprivhost.1.gz
108
man/man1/mstprivhost.1.gz
60
man/man1/mstreg.1.gz
109
man/man1/mstreg.1.gz
61
man/man1/mstregdump.1.gz
110
man/man1/mstregdump.1.gz
111
man/man1/mstresourcedump.1.gz
62
man/man1/mstvpd.1.gz
112
man/man1/mstvpd.1.gz
63
%%DATADIR%%/BlueField.csv
113
%%DATADIR%%/BlueField.csv
64
%%DATADIR%%/ConnectIB.csv
114
%%DATADIR%%/ConnectIB.csv
Lines 69-74 Link Here
69
%%DATADIR%%/ConnectX4LX.csv
119
%%DATADIR%%/ConnectX4LX.csv
70
%%DATADIR%%/ConnectX5.csv
120
%%DATADIR%%/ConnectX5.csv
71
%%DATADIR%%/ConnectX6.csv
121
%%DATADIR%%/ConnectX6.csv
122
%%DATADIR%%/ConnectX6DX.csv
72
%%DATADIR%%/InfiniScaleIV.csv
123
%%DATADIR%%/InfiniScaleIV.csv
73
%%DATADIR%%/Quantum.csv
124
%%DATADIR%%/Quantum.csv
74
%%DATADIR%%/Spectrum.csv
125
%%DATADIR%%/Spectrum.csv
Lines 77-79 Link Here
77
%%DATADIR%%/SwitchX.csv
128
%%DATADIR%%/SwitchX.csv
78
%%DATADIR%%/mlxconfig_dbs/mlxconfig_host.db
129
%%DATADIR%%/mlxconfig_dbs/mlxconfig_host.db
79
%%DATADIR%%/mlxconfig_dbs/mlxconfig_switch.db
130
%%DATADIR%%/mlxconfig_dbs/mlxconfig_switch.db
131
%%ADAB%%%%DATADIR%%/prm_dbs/hca/ext/register_access_table.adb
132
%%ADAB%%%%DATADIR%%/prm_dbs/switch/ext/register_access_table.adb

Return to bug 242038