Update to upstream release 4.32.0
Resolves: RHEL-94461, RHEL-86019, RHEL-77099 Signed-off-by: Kamal Heib <kheib@redhat.com>
This commit is contained in:
parent
81a3d537d2
commit
f4a3bb4aa4
1
.gitignore
vendored
1
.gitignore
vendored
@ -43,3 +43,4 @@ noarch/
|
||||
/mstflint-4.26.0-1.tar.gz
|
||||
/mstflint-4.29.0-1.tar.gz
|
||||
/mstflint-4.30.0-1.tar.gz
|
||||
/mstflint-4.32.0-1.tar.gz
|
||||
|
@ -1,67 +0,0 @@
|
||||
From a91f8252d007aa0d8b2d211ea0061a60ad003c73 Mon Sep 17 00:00:00 2001
|
||||
From: Kamal Heib <kheib@redhat.com>
|
||||
Date: Tue, 17 Oct 2023 14:19:52 -0400
|
||||
Subject: [PATCH] Add default link flags for shared libraries
|
||||
|
||||
Signed-off-by: Kamal Heib <kheib@redhat.com>
|
||||
---
|
||||
cmdif/Makefile.am | 2 +-
|
||||
dev_mgt/Makefile.am | 2 +-
|
||||
mtcr_py/Makefile.am | 2 +-
|
||||
reg_access/Makefile.am | 2 +-
|
||||
4 files changed, 4 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/cmdif/Makefile.am b/cmdif/Makefile.am
|
||||
index 7bb332aada48..3ffdf7d6653e 100644
|
||||
--- a/cmdif/Makefile.am
|
||||
+++ b/cmdif/Makefile.am
|
||||
@@ -53,7 +53,7 @@ libcmdif_la_SOURCES = tools_cif.c tools_cif.h icmd_cif_common.c icmd_cif_common.
|
||||
cmdif_pylibdir = $(libdir)/mstflint/python_tools/
|
||||
cmdif_pylib_DATA = ${CCMDIF_SO} cmdif.py
|
||||
${CCMDIF_SO}: libcmdif.la
|
||||
- $(CC) -g -Wall -pthread -shared ${CFLAGS} *.o -o ${CCMDIF_SO} \
|
||||
+ $(CC) -g -Wall -pthread -shared ${CFLAGS} ${LDFLAGS} *.o -o ${CCMDIF_SO} \
|
||||
$(top_builddir)/tools_layouts/.libs/libtools_layouts.a $(top_builddir)/${MTCR_CONF_DIR}/.libs/libmtcr_ul.a
|
||||
|
||||
CLEANFILES = ${CCMDIF_SO}
|
||||
diff --git a/dev_mgt/Makefile.am b/dev_mgt/Makefile.am
|
||||
index a5f66e9fd935..0d1417daa647 100644
|
||||
--- a/dev_mgt/Makefile.am
|
||||
+++ b/dev_mgt/Makefile.am
|
||||
@@ -50,7 +50,7 @@ dev_mgt_pylib_DATA = c_dev_mgt.so
|
||||
dist_dev_mgt_pylib_DATA = dev_mgt.py
|
||||
|
||||
c_dev_mgt.so: libdev_mgt.la
|
||||
- $(CC) -g -Wall -pthread -shared ${CFLAGS} tools_dev_types.o -o c_dev_mgt.so \
|
||||
+ $(CC) -g -Wall -pthread -shared ${CFLAGS} ${LDFLAGS} tools_dev_types.o -o c_dev_mgt.so \
|
||||
$(top_builddir)/reg_access/.libs/libreg_access.a \
|
||||
$(top_builddir)/tools_layouts/.libs/libtools_layouts.a \
|
||||
$(top_builddir)/${MTCR_CONF_DIR}/.libs/libmtcr_ul.a
|
||||
diff --git a/mtcr_py/Makefile.am b/mtcr_py/Makefile.am
|
||||
index 46fa4e60916d..2f431156a45e 100644
|
||||
--- a/mtcr_py/Makefile.am
|
||||
+++ b/mtcr_py/Makefile.am
|
||||
@@ -35,6 +35,6 @@ mtcr_pylibdir = $(libdir)/mstflint/python_tools/
|
||||
mtcr_pylib_DATA = cmtcr.so
|
||||
dist_mtcr_pylib_DATA = mtcr.py
|
||||
cmtcr.so:
|
||||
- $(CC) -g -Wall -pthread -shared ${CFLAGS} -o cmtcr.so -Wl,--whole-archive $(top_builddir)/${MTCR_CONF_DIR}/.libs/libmtcr_ul.a -Wl,--no-whole-archive
|
||||
+ $(CC) -g -Wall -pthread -shared ${CFLAGS} ${LDFLAGS} -o cmtcr.so -Wl,--whole-archive $(top_builddir)/${MTCR_CONF_DIR}/.libs/libmtcr_ul.a -Wl,--no-whole-archive
|
||||
|
||||
CLEANFILES = cmtcr.so
|
||||
diff --git a/reg_access/Makefile.am b/reg_access/Makefile.am
|
||||
index 8e38c473cc9c..6228b45af312 100644
|
||||
--- a/reg_access/Makefile.am
|
||||
+++ b/reg_access/Makefile.am
|
||||
@@ -57,7 +57,7 @@ reg_access_pylib_DATA = ${RREG_ACCESS_SO}
|
||||
dist_reg_access_pylib_DATA = regaccess.py regaccess_hca_ext_structs.py regaccess_switch_ext_structs.py
|
||||
|
||||
${RREG_ACCESS_SO}: libreg_access.la
|
||||
- $(CC) -g -Wall -pthread -shared ${CFLAGS} *.o -o ${RREG_ACCESS_SO} \
|
||||
+ $(CC) -g -Wall -pthread -shared ${CFLAGS} ${LDFLAGS} *.o -o ${RREG_ACCESS_SO} \
|
||||
$(top_builddir)/tools_layouts/.libs/libtools_layouts.a $(top_builddir)/${MTCR_CONF_DIR}/.libs/libmtcr_ul.a
|
||||
|
||||
CLEANFILES = ${RREG_ACCESS_SO}
|
||||
--
|
||||
2.44.0
|
||||
|
@ -2,15 +2,13 @@
|
||||
|
||||
Name: mstflint
|
||||
Summary: Mellanox firmware burning tool
|
||||
Version: 4.30.0
|
||||
Version: 4.32.0
|
||||
Release: 1%{?dist}
|
||||
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
|
||||
|
||||
BuildRequires: make
|
||||
BuildRequires: libstdc++-devel, zlib-devel, libibmad-devel, gcc-c++, gcc
|
||||
BuildRequires: libcurl-devel, boost-devel, libxml2-devel, openssl-devel
|
||||
@ -29,8 +27,6 @@ for network adapters based on Mellanox Technologies chips.
|
||||
%prep
|
||||
%setup -q -n %{name}-%{version}
|
||||
|
||||
%patch 4 -p1
|
||||
|
||||
find . -type f -iname '*.[ch]' -exec chmod a-x '{}' ';'
|
||||
find . -type f -iname '*.cpp' -exec chmod a-x '{}' ';'
|
||||
|
||||
@ -64,6 +60,10 @@ chmod +x %{buildroot}/%{_libdir}/mstflint/sdk/*.so
|
||||
%{_mandir}/man1/*
|
||||
|
||||
%changelog
|
||||
* Thu Jun 26 2025 Kamal Heib <kheib@redhat.com> - 4.32.0-1
|
||||
- Update to upstream release 4.32.0
|
||||
- Resolves: RHEL-94461, RHEL-86019, RHEL-77099
|
||||
|
||||
* Tue Dec 10 2024 Kamal Heib <kheib@redhat.com> - 4.30.0-1
|
||||
- Update to upstream release 4.30.0
|
||||
- Resolves: RHEL-67034
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (mstflint-4.30.0-1.tar.gz) = 05836cd1a922937d6ae530e5d579c4c896dd510129669337b4f0aae0f2ec0e05c1866d65f60c5e0c0d5b3a17564a542c051e293170e866705668d3d684a75556
|
||||
SHA512 (mstflint-4.32.0-1.tar.gz) = e1d26960c52a86f9adac4aff7b02ebc1bd3a3c247fb4f0c448fee26599bb3bb6b7b2baa1a0f68acc3082a00c9897467e7cf4409905b12028973af5349d6675ec
|
||||
|
Loading…
Reference in New Issue
Block a user