mstflint/Add-armv6-and-armv7-support.patch
Nicolas Morey-Chaisemartin de3bdd4771 Accepting request 674852 from home:NMoreyChaisemartin:branches:science:HPC
- Update to v4.11.0-3 (bsc#1103497)
  - Added option to query only flashed FW version, which reduces the CPU usage during the query.
    To use this option you should use "--next_boot_fw_ver" flag.
  - Fixed issue of missing information during query.
  - Added support for python 3.
  - Added option to reduce cpu utilization with "--low_cpu" flag.
  - Added compatibility to 1.1.X version, in addition to previously supported 1.0.2 version.
  - Added support for Mellanox Quantum switch systems and
    ConnectX-6 Ready adapter cards.
  - mstarchive tool
    The mstarchive tool allows the user to create a file with the mfa2 extension.
    The new file contains several binary files of a given firmware for
    different adapter cards.
  - mstprivhost
    The ability to restrict the hosts from configuring the NIC.
    Meaning, only the Arm side will have the privilege to configure the NIC.
    Note: This utility is supported in BlueField devices only.
  - mstconfig in BlueField
    Enables the user to manage (grand/restrict) mlxconfig configuration
    privileges for BlueField Arm systems.
- Refresh patchest against latest sources:
  - Add-armv6-and-armv7-support.patch
  - Add-s390-s390x-support.patch
  - Fix-gcc7-and-gcc8.patch
  - Remove-date-time-info-from-build.patch
  - fix-race-condition-during-install.patch
- Drop Fixed-licenses-of-files.patch as it was merged upstream

OBS-URL: https://build.opensuse.org/request/show/674852
OBS-URL: https://build.opensuse.org/package/show/science:HPC/mstflint?expand=0&rev=31
2019-02-14 06:54:30 +00:00

75 lines
2.9 KiB
Diff

commit dfa4e356197a42f339fd873acd90944d7c8b896c
Author: Nicolas Morey-Chaisemartin <NMoreyChaisemartin@suse.com>
Date: Thu May 18 11:20:20 2017 +0200
Add armv6 and armv7 support
Signed-off-by: Nicolas Morey-Chaisemartin <NMoreyChaisemartin@suse.com>
diff --git common/compatibility.h common/compatibility.h
index b187938ae0af..5e8a7f35afb5 100644
--- common/compatibility.h
+++ common/compatibility.h
@@ -59,6 +59,8 @@
# define ARCH_ppc64
# elif defined(__PPC__)
# define ARCH_ppc
+# elif defined(__ARM_ARCH_7A__)
+# define ARCH_arm7
# elif defined(__aarch64__)
# define ARCH_arm64
# elif defined(__arm__)
@@ -98,7 +100,7 @@
#define U16H_FMT "0x%04x"
#define U8H_FMT "0x%02x"
-#if defined(ARCH_x86) || defined(ARCH_ppc) || defined(UEFI_BUILD) || defined(ARCH_arm6l) || defined(ARCH_s390)
+#if defined(ARCH_x86) || defined(ARCH_ppc) || defined(UEFI_BUILD) || defined(ARCH_arm6l) || defined(ARCH_s390) || defined(ARCH_arm7)
# if defined(__MINGW32__) || defined(__MINGW64__)
# include <inttypes.h>
# define U64D_FMT "0x%" PRId64
diff --git mtcr_ul/packets_common.h mtcr_ul/packets_common.h
index 68a08d0589ae..7974c12cb743 100644
--- mtcr_ul/packets_common.h
+++ mtcr_ul/packets_common.h
@@ -148,6 +148,8 @@
# define ARCH_ppc64
# elif defined(__PPC__)
# define ARCH_ppc
+# elif defined(__ARM_ARCH_7A__)
+# define ARCH_arm7
# elif defined(__aarch64__)
# define ARCH_arm64
# elif defined(__arm__)
@@ -169,7 +171,7 @@
/* define macros for print fields */
//#if defined (ARCH_ia64) || defined(ARCH_x86_64) || defined(ARCH_ppc64) || defined(__MINGW64__) || defined(ARCH_s390x)
/*
- #if !defined(UEFI_BUILD) && (defined (ARCH_ia64) || defined(ARCH_x86_64) || defined(ARCH_ppc64) || defined(__MINGW64__) || defined(ARCH_s390x))
+ #if !defined(UEFI_BUILD) && (defined (ARCH_ia64) || defined(ARCH_x86_64) || defined(ARCH_ppc64) || defined(__MINGW64__) || defined(ARCH_s390x) || defined(ARCH_arm7))
# define U64H_FMT "0x%016lx"
# define U64D_FMT "%lu"
# define U32H_FMT "0x%08x"
diff --git tools_layouts/adb_to_c_utils.h tools_layouts/adb_to_c_utils.h
index 0a5cee5fec54..bff7c458915e 100644
--- tools_layouts/adb_to_c_utils.h
+++ tools_layouts/adb_to_c_utils.h
@@ -133,6 +133,8 @@ extern "C" {
# define ARCH_ppc64
# elif defined(__PPC__)
# define ARCH_ppc
+# elif defined(__ARM_ARCH_7A__)
+# define ARCH_arm7
# elif defined(__aarch64__)
# define ARCH_arm64
# elif defined(__arm__)
@@ -173,7 +175,7 @@ extern "C" {
#define U16H_FMT "0x%04x"
#define U8H_FMT "0x%02x"
-#if defined(ARCH_x86) || defined(ARCH_ppc) || defined(UEFI_BUILD) || defined(ARCH_arm6l) || defined(ARCH_s390)
+#if defined(ARCH_x86) || defined(ARCH_ppc) || defined(UEFI_BUILD) || defined(ARCH_arm6l) || defined(ARCH_arm7) || defined(ARCH_s390)
# if defined(__MINGW32__) || defined(__MINGW64__)
# include <inttypes.h>
# define U64D_FMT "0x%" PRId64