Accepting request 852067 from hardware
- Fix broken source url and prepare done in previous changes - add patch fwts-fix-non-acpi.patch fix build on non-acpi platforms like ppc64le and s390x - Update to version 20.11.00: * See provided changelog for detailed list of changes OBS-URL: https://build.opensuse.org/request/show/852067 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/fwts?expand=0&rev=52
This commit is contained in:
commit
6c5cc1c6a5
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:41dfe922c64abf16a4831a6f726c61e7016b4098a975f6d0579ffef146127d2e
|
||||
size 3835316
|
3
fwts-V20.11.00.tar.gz
Normal file
3
fwts-V20.11.00.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:59119fba0280a44d64914e3b5caea307f001c665412e0e106903e404aa014fcf
|
||||
size 3845548
|
23
fwts-fix-non-acpi.patch
Normal file
23
fwts-fix-non-acpi.patch
Normal file
@ -0,0 +1,23 @@
|
||||
--- fwts-20.11.00/src/acpica/source/tools/acpiexec/aecommon.h 2020/11/27 15:57:25 1.1
|
||||
+++ fwts-20.11.00/src/acpica/source/tools/acpiexec/aecommon.h 2020/11/27 15:57:41
|
||||
@@ -201,11 +201,18 @@
|
||||
|
||||
} INIT_FILE_ENTRY;
|
||||
|
||||
+#if defined(__x86_64__) || defined(__x86_64) || defined(__i386__) || defined(__i386) || defined(__aarch64__) || defined(__riscv)
|
||||
+extern BOOLEAN AcpiGbl_IgnoreErrors;
|
||||
+extern UINT8 AcpiGbl_RegionFillValue;
|
||||
+#else
|
||||
+#define VOID_FUNC(name) void name(void);
|
||||
+extern VOID_FUNC(AcpiGbl_IgnoreErrors)
|
||||
+extern VOID_FUNC(AcpiGbl_RegionFillValue)
|
||||
+#endif
|
||||
+
|
||||
extern BOOLEAN AcpiGbl_UseLocalFaultHandler;
|
||||
extern BOOLEAN AcpiGbl_VerboseHandlers;
|
||||
-extern BOOLEAN AcpiGbl_IgnoreErrors;
|
||||
extern BOOLEAN AcpiGbl_AbortLoopOnTimeout;
|
||||
-extern UINT8 AcpiGbl_RegionFillValue;
|
||||
extern INIT_FILE_ENTRY *AcpiGbl_InitEntries;
|
||||
extern UINT32 AcpiGbl_InitFileLineCount;
|
||||
extern UINT8 AcpiGbl_UseHwReducedFadt;
|
@ -1,8 +1,6 @@
|
||||
Index: fwts-20.03.00/src/acpica/source/compiler/aslutils.c
|
||||
===================================================================
|
||||
--- fwts-20.03.00.orig/src/acpica/source/compiler/aslutils.c
|
||||
+++ fwts-20.03.00/src/acpica/source/compiler/aslutils.c
|
||||
@@ -596,7 +596,7 @@ UtDisplayOneSummary (
|
||||
--- fwts-20.11.00/src/acpica/source/compiler/aslutils.c 2020/11/27 16:29:34 1.1
|
||||
+++ fwts-20.11.00/src/acpica/source/compiler/aslutils.c 2020/11/27 16:29:50
|
||||
@@ -596,7 +596,7 @@
|
||||
/* Compiler name and version number */
|
||||
|
||||
FlPrintFile (FileId, "%s version %X [%s]\n\n",
|
||||
|
17
fwts.changes
17
fwts.changes
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 1 09:42:44 UTC 2020 - Martin Pluskal <mpluskal@suse.com>
|
||||
|
||||
- Fix broken source url and prepare done in previous changes
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 30 14:47:38 CET 2020 - ro@suse.de
|
||||
|
||||
- add patch fwts-fix-non-acpi.patch
|
||||
fix build on non-acpi platforms like ppc64le and s390x
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Nov 27 17:33:03 CET 2020 - ro@suse.de
|
||||
|
||||
- Update to version 20.11.00:
|
||||
* See provided changelog for detailed list of changes
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 22 11:51:22 UTC 2020 - Martin Pluskal <mpluskal@suse.com>
|
||||
|
||||
|
@ -17,15 +17,17 @@
|
||||
|
||||
|
||||
Name: fwts
|
||||
Version: 20.09.00
|
||||
Version: 20.11.00
|
||||
Release: 0
|
||||
Summary: Firmware Test Suite
|
||||
License: GPL-2.0-or-later
|
||||
Group: Development/Tools/Other
|
||||
URL: https://wiki.ubuntu.com/Kernel/Reference/fwts
|
||||
Source0: http://fwts.ubuntu.com/release/%{name}-V%{version}.tar.gz
|
||||
Source0: https://fwts.ubuntu.com/release/%{name}-V%{version}.tar.gz
|
||||
# PATCH-FIX-OPENSUSE fwts-no-compiletime.patch
|
||||
Patch1: fwts-no-compiletime.patch
|
||||
# PATCH-FIX-OPENSUSE fwts-fix-non-acpi.patch
|
||||
Patch2: fwts-fix-non-acpi.patch
|
||||
BuildRequires: autoconf
|
||||
BuildRequires: automake
|
||||
BuildRequires: bison
|
||||
@ -54,7 +56,7 @@ will give some form of advice on how to fix issues or workaround firmware
|
||||
issues.
|
||||
|
||||
%prep
|
||||
%autosetup -c %{name}-%{version} -p1
|
||||
%autosetup -c %{name}-V%{version} -p1
|
||||
|
||||
%build
|
||||
find . -name Makefile.am -exec sed -i "s|-Werror||g" {} +
|
||||
|
Loading…
Reference in New Issue
Block a user