mstflint/Remove-date-time-info-from-build.patch
Nicolas Morey-Chaisemartin 9fc02bb26e Accepting request 644584 from home:NMoreyChaisemartin:branches:sp1-staging
- Update to v4.10.0-3 (fate#325998)
  - Added mstcongestion 

- Update to v4.10.0-2
  - mstfwreset not supported
  - mstflint now handles all the burn parameters when MCC
    is enabled and displays the secure-FW CS tokens.
  - mstconfig
    - Added the option to query partial parameters
    - Added the following new parameters:
        FLEX_PARSER_PROFILE_ENABLE
        ECPF_ESWITCH_MANAGER
        ECPF_PAGE_SUPPLIER
        SAFE_MODE_ENABLE
        SAFE_MODE_THERSHOLD
        BOOT_UNDI_NETWORK_WAIT
  - Fixed bug in firmware burning flow
- Refresh patchest against latest sources:
  - Remove-date-time-info-from-build.patch
  - Add-s390-s390x-support.patch
  - Add-armv6-and-armv7-support.patch
  - Fix-gcc7-and-gcc8.patch

OBS-URL: https://build.opensuse.org/request/show/644584
OBS-URL: https://build.opensuse.org/package/show/science:HPC/mstflint?expand=0&rev=27
2018-10-25 10:49:12 +00:00

25 lines
987 B
Diff

commit 206dbe6dbb96cb8fc1b6ee8c5ffe52496b30762b
Author: Nicolas Morey-Chaisemartin <NMoreyChaisemartin@suse.com>
Date: Thu May 18 07:48:13 2017 +0200
Remove date/time info from build
Signed-off-by: Nicolas Morey-Chaisemartin <NMoreyChaisemartin@suse.com>
diff --git common/tools_version.h common/tools_version.h
index 4d31d97daf18..0c5da29bf700 100644
--- common/tools_version.h
+++ common/tools_version.h
@@ -71,10 +71,8 @@ int get_version_string(char *buf, int buf_size, const char *exe_name, const char
len = snprintf(buf, buf_size, "%s %s, ", exe_name, tool_version);
}
// cut out first and last "$" from the SVN version string:
- len += snprintf(buf + len, buf_size - len, "%s, built on %s, %s. Git SHA Hash: %s",
+ len += snprintf(buf + len, buf_size - len, "%s. Git SHA Hash: %s",
MFT_VERSION_STR,
- __DATE__,
- __TIME__,
TOOLS_GIT_SHA);
return len;
}