Refresh patches and test results

Signed-off-by: Al Stone <ahs3@redhat.com>
This commit is contained in:
Al Stone 2015-03-02 18:09:09 -07:00
parent 2d0dc7d0dd
commit d20c515269
4 changed files with 57 additions and 3 deletions

View File

@ -1,5 +1,5 @@
Name: acpica-tools Name: acpica-tools
Version: 20141107 Version: 20150204
Release: 1%{?dist} Release: 1%{?dist}
Summary: ACPICA tools for the development and debug of ACPI tables Summary: ACPICA tools for the development and debug of ACPI tables
@ -31,6 +31,7 @@ Patch4: asllookup-miscompare.patch
Patch5: aapits-makefile.patch Patch5: aapits-makefile.patch
Patch6: re-enable-big-endian.patch Patch6: re-enable-big-endian.patch
Patch7: OPT_LDFLAGS.patch Patch7: OPT_LDFLAGS.patch
Patch8: int-format.patch
BuildRequires: bison patchutils flex BuildRequires: bison patchutils flex
@ -89,6 +90,7 @@ gzip -dc %{SOURCE1} | tar -x --strip-components=1 -f -
%patch5 -p1 -b .aapits-makefile %patch5 -p1 -b .aapits-makefile
%patch6 -p1 -b .re-enable-big-endian %patch6 -p1 -b .re-enable-big-endian
%patch7 -p1 -b .OPT_LDFLAGS %patch7 -p1 -b .OPT_LDFLAGS
%patch8 -p1 -b .int-format
cp -p %{SOURCE2} README.Fedora cp -p %{SOURCE2} README.Fedora
cp -p %{SOURCE3} iasl.1 cp -p %{SOURCE3} iasl.1
@ -193,6 +195,10 @@ fi
%changelog %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 * Mon Nov 17 2014 Al Stone <ahs3@redhat.com> - 20141107-1
- Update to latest upstream. Closes BZ#1147131. - Update to latest upstream. Closes BZ#1147131.
- Refresh patches - Refresh patches

View File

@ -238,7 +238,7 @@ Remark 2089 - Object is not referenced ^ (Name is with
Intel ACPI Component Architecture Intel ACPI Component Architecture
ASL+ Optimizing Compiler version VVVVVVVV-YYYY [XXXXXXXXXXX] 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 Ignoring all errors, forcing AML file generation

View File

@ -286,7 +286,7 @@ Warning 3141 - Missing dependency ^ (Device object requires a _HID or _ADR i
Intel ACPI Component Architecture Intel ACPI Component Architecture
ASL+ Optimizing Compiler version VVVVVVVV-YYYY [XXXXXXXXXXX] 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 Ignoring all errors, forcing AML file generation

48
int-format.patch Normal file
View File

@ -0,0 +1,48 @@
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);
}
diff -Naur acpica-unix2-20150204/source/compiler/aslerror.c acpica-unix2-20150204.new/source/compiler/aslerror.c
--- acpica-unix2-20150204/source/compiler/aslerror.c 2015-02-04 14:12:18.000000000 -0700
+++ acpica-unix2-20150204.new/source/compiler/aslerror.c 2015-03-02 19:01:35.880311085 -0700
@@ -685,7 +685,7 @@
Gbl_ExceptionCount[Level]++;
if (Gbl_ExceptionCount[ASL_ERROR] > ASL_MAX_ERROR_COUNT)
{
- printf ("\nMaximum error count (%u) exceeded\n", ASL_MAX_ERROR_COUNT);
+ printf ("\nMaximum error count (%d) exceeded\n", ASL_MAX_ERROR_COUNT);
Gbl_SourceLine = 0;
Gbl_NextError = Gbl_ErrorLog;
diff -Naur acpica-unix2-20150204/source/components/debugger/dbexec.c acpica-unix2-20150204.new/source/components/debugger/dbexec.c
--- acpica-unix2-20150204/source/components/debugger/dbexec.c 2015-02-04 14:12:19.000000000 -0700
+++ acpica-unix2-20150204.new/source/components/debugger/dbexec.c 2015-03-02 19:03:54.240975631 -0700
@@ -214,7 +214,7 @@
{
ACPI_ERROR ((AE_INFO,
"Possible overflow of internal debugger buffer (size 0x%X needed 0x%X)",
- ACPI_DEBUG_BUFFER_SIZE, (UINT32) ReturnObj->Length));
+ ACPI_DEBUG_BUFFER_SIZE, (unsigned int) ReturnObj->Length));
}
}