Refresh patches and test results
Signed-off-by: Al Stone <ahs3@redhat.com>
This commit is contained in:
parent
14d87aaa8c
commit
8ac1ac9001
@ -1,5 +1,5 @@
|
||||
Name: acpica-tools
|
||||
Version: 20141107
|
||||
Version: 20150204
|
||||
Release: 1%{?dist}
|
||||
Summary: ACPICA tools for the development and debug of ACPI tables
|
||||
|
||||
@ -31,6 +31,7 @@ Patch4: asllookup-miscompare.patch
|
||||
Patch5: aapits-makefile.patch
|
||||
Patch6: re-enable-big-endian.patch
|
||||
Patch7: OPT_LDFLAGS.patch
|
||||
Patch8: int-format.patch
|
||||
|
||||
BuildRequires: bison patchutils flex
|
||||
|
||||
@ -89,6 +90,7 @@ gzip -dc %{SOURCE1} | tar -x --strip-components=1 -f -
|
||||
%patch5 -p1 -b .aapits-makefile
|
||||
%patch6 -p1 -b .re-enable-big-endian
|
||||
%patch7 -p1 -b .OPT_LDFLAGS
|
||||
%patch8 -p1 -b .int-format
|
||||
|
||||
cp -p %{SOURCE2} README.Fedora
|
||||
cp -p %{SOURCE3} iasl.1
|
||||
@ -193,6 +195,10 @@ fi
|
||||
|
||||
|
||||
%changelog
|
||||
* Mon Mar 2 2015 Al Stone <ahs3@redhat.com> - 20150204-1
|
||||
- Update to latest upstream. Closes BZ#1190383
|
||||
- Refresh patches
|
||||
|
||||
* Mon Nov 17 2014 Al Stone <ahs3@redhat.com> - 20141107-1
|
||||
- Update to latest upstream. Closes BZ#1147131.
|
||||
- Refresh patches
|
||||
|
@ -238,7 +238,7 @@ Remark 2089 - Object is not referenced ^ (Name is with
|
||||
|
||||
Intel ACPI Component Architecture
|
||||
ASL+ Optimizing Compiler version VVVVVVVV-YYYY [XXXXXXXXXXX]
|
||||
Copyright (c) 2000 - 2014 Intel Corporation
|
||||
Copyright (c) 2000 - 2015 Intel Corporation
|
||||
|
||||
Ignoring all errors, forcing AML file generation
|
||||
|
||||
|
@ -286,7 +286,7 @@ Warning 3141 - Missing dependency ^ (Device object requires a _HID or _ADR i
|
||||
|
||||
Intel ACPI Component Architecture
|
||||
ASL+ Optimizing Compiler version VVVVVVVV-YYYY [XXXXXXXXXXX]
|
||||
Copyright (c) 2000 - 2014 Intel Corporation
|
||||
Copyright (c) 2000 - 2015 Intel Corporation
|
||||
|
||||
Ignoring all errors, forcing AML file generation
|
||||
|
||||
|
24
int-format.patch
Normal file
24
int-format.patch
Normal file
@ -0,0 +1,24 @@
|
||||
diff -Naur acpica-unix2-20150204.orig/source/compiler/aslcompile.c acpica-unix2-20150204/source/compiler/aslcompile.c
|
||||
--- acpica-unix2-20150204.orig/source/compiler/aslcompile.c 2015-03-02 17:11:22.300989116 -0700
|
||||
+++ acpica-unix2-20150204/source/compiler/aslcompile.c 2015-03-02 17:11:36.883174716 -0700
|
||||
@@ -680,7 +680,7 @@
|
||||
|
||||
if (Gbl_ExceptionCount[ASL_ERROR] > ASL_MAX_ERROR_COUNT)
|
||||
{
|
||||
- printf ("\nMaximum error count (%u) exceeded\n",
|
||||
+ printf ("\nMaximum error count (%d) exceeded\n",
|
||||
ASL_MAX_ERROR_COUNT);
|
||||
}
|
||||
|
||||
diff -Naur acpica-unix2-20150204.orig/source/tools/acpiexec/aemain.c acpica-unix2-20150204/source/tools/acpiexec/aemain.c
|
||||
--- acpica-unix2-20150204.orig/source/tools/acpiexec/aemain.c 2015-03-02 17:11:22.313989281 -0700
|
||||
+++ acpica-unix2-20150204/source/tools/acpiexec/aemain.c 2015-03-02 17:12:42.467009457 -0700
|
||||
@@ -197,7 +197,7 @@
|
||||
|
||||
if (strlen (AcpiGbl_Optarg) > (AE_BUFFER_SIZE -1))
|
||||
{
|
||||
- printf ("**** The length of command line (%u) exceeded maximum (%u)\n",
|
||||
+ printf ("**** The length of command line (%u) exceeded maximum (%d)\n",
|
||||
(UINT32) strlen (AcpiGbl_Optarg), (AE_BUFFER_SIZE -1));
|
||||
return (-1);
|
||||
}
|
Loading…
Reference in New Issue
Block a user