Revisions of acpica

Thomas Renninger's avatar Thomas Renninger (trenn) accepted request 951744 from Dario Faggioli's avatar Dario Faggioli (dfaggioli) (revision 142)
- The package build fine on arches different than x86 and ARM. Drop
  the ExclusiveArch.
Thomas Renninger's avatar Thomas Renninger (trenn) accepted request 926319 from Ferdinand Thiessen's avatar Ferdinand Thiessen (susnux) (revision 141)
Update to version 20210930
Thomas Renninger's avatar Thomas Renninger (trenn) accepted request 903212 from Ferdinand Thiessen's avatar Ferdinand Thiessen (susnux) (revision 140)
- Update to version 20210604
buildservice-autocommit accepted request 886751 from Thomas Renninger's avatar Thomas Renninger (trenn) (revision 139)
baserev update by copy to link target
Thomas Renninger's avatar Thomas Renninger (trenn) accepted request 886068 from Ferdinand Thiessen's avatar Ferdinand Thiessen (susnux) (revision 138)
ACPI 6.4 support
buildservice-autocommit accepted request 862643 from Thomas Renninger's avatar Thomas Renninger (trenn) (revision 137)
baserev update by copy to link target
Thomas Renninger's avatar Thomas Renninger (trenn) accepted request 860540 from Matthias Eliasson's avatar Matthias Eliasson (elimat) (revision 136)
- Update to version 20210105
  ACPICA kernel-resident subsystem:
  * Updated all copyrights to 2021. This affects all ACPICA source code 
    modules.
  iASL Compiler/Disassembler and ACPICA tools:
  * ASL test suite (ASLTS): Updated all copyrights to 2021.
  * Tools and utilities: Updated all signon copyrights to 2021.
  * iASL Table Compiler: Removed support for obsolete ACPI tables: VRTC, 
    MTMR. Al Stone.
buildservice-autocommit accepted request 829031 from Thomas Renninger's avatar Thomas Renninger (trenn) (revision 135)
baserev update by copy to link target
Thomas Renninger's avatar Thomas Renninger (trenn) accepted request 822707 from Matthias Eliasson's avatar Matthias Eliasson (elimat) (revision 134)
- Update to version 20200717 
  ACPICA kernel-resident subsystem:
  * Do not increment OperationRegion reference counts for field units. Recent
    server firmware has revealed that this reference count can overflow on
	large servers that declare many field units (thousands) under the same
	OperationRegion. This occurs because each field unit declaration will add
	a reference count to the source OperationRegion. This release solves the 
	reference count overflow for OperationRegion objects by preventing 
	fieldUnits from incrementing their parent OperationRegion's reference
	count.
  * Replaced one-element arrays with flexible-arrays, which were introduced
    in C99.
  * Restored the readme file containing the directions for generation of
    ACPICA from source on MSVC 2017. Updated the file for MSVC 2017. File is
	located at: generate/msvc2017/readme.txt
  iASL Compiler/Disassembler and ACPICA tools:
  * iASL: Fixed a regression found in version 20200214. Prevent iASL from
    emitting an extra byte of garbage data when control methods declared a
	single parameter type without using braces. This extra byte is known to
	cause a blue screen on the Windows AML interpreter.
  * iASL: Made a change to allow external declarations to specify the type of
    a named object even when some name segments are not defined. This change
	allows the following ASL code to compile 
	(When DEV0 is not defined or not defined yet): 
	External (\_SB.DEV0.OBJ1, IntObj) 
	External (\_SB.DEV0, DeviceObj)
  * iASL: Fixed a problem where method names in "Alias ()" statement could be
    misinterpreted. They are now interpreted correctly as method invocations.
  * iASL: capture a method parameter count (Within the Method info segment,
    as well as the argument node) when using parameter type lists.
buildservice-autocommit accepted request 819020 from Thomas Renninger's avatar Thomas Renninger (trenn) (revision 133)
baserev update by copy to link target
Thomas Renninger's avatar Thomas Renninger (trenn) accepted request 818416 from Matthias Eliasson's avatar Matthias Eliasson (elimat) (revision 132)
- Update to version 20200528
  ACPICA kernel-resident subsystem:
    Removed old/obsolete Visual Studio files which were used to build the 
    Windows versions of the ACPICA tools. Since we have moved to Visual 
    Studio 2017, we are no longer supporting Visual Studio 2006 and 2009 
    project files. The new subdirectory and solution file are located at:
    acpica/generate/msvc2017/AcpiComponents.sln
  iASL Compiler/Disassembler and ACPICA tools: 
  * iASL: added support for a new OperationRegion Address Space (subtype): 
    PlatformRtMechanism. Support for this new keyword is being released for 
    early prototyping. It will appear in the next release of the ACPI 
    specification.
  * iASL: do not optimize the NameString parameter of the CondRefOf operator. 
    In the previous iASL compiler release, the NameString parameter of the 
    CondRefOf was optimized. There is evidence that some implementations of 
    the AML interpreter do not perform the recursive search-to-parent search 
    during the execution of the CondRefOf operator. Therefore, the CondRefOf 
    operator behaves differently when the NameString parameter is a single 
    name segment (a NameSeg) as opposed to a full NamePath (starting at the 
    root scope) or a NameString containing parent prefixes.
  * iASL: Prevent an inadvertent remark message. This change prevents a 
    remark if within a control method the following exist:
    1) An Operation Region is defined, and
    2) A Field operator is defined that refers to the region.
    This happens because at the top level, the Field operator does not 
    actually create a new named object, it simply references the operation 
    region.
  * Removed support for the acpinames utility. The acpinames was a simple 
    utility used to populate and display the ACPI namespace without executing 
    any AML code. However, ACPICA now supports executable opcodes outside of 
    control methods. This means that executable AML opcodes such as If and 
    Store opcodes need to be executed during table load. Therefore, acpinames 
    would need to be updated to match the same behavior as the acpiexec 
    utility and since acpiexec can already dump the entire namespace (via the 
    'namespace' command), we no longer have the need to maintain acpinames.
  * In order to dump the contents of the ACPI namepsace using acpiexec, 
    execute the following command from the command line:
    acpiexec -b "n" [aml files]
- Refresh parches
buildservice-autocommit accepted request 798830 from Thomas Renninger's avatar Thomas Renninger (trenn) (revision 131)
baserev update by copy to link target
Thomas Renninger's avatar Thomas Renninger (trenn) accepted request 798388 from Martin Liška's avatar Martin Liška (marxin) (revision 130)
- Enable -fcommon in CFLAGS and CXXFLAGS in order
  to fix boo#1160383.
buildservice-autocommit accepted request 770466 from Thomas Renninger's avatar Thomas Renninger (trenn) (revision 129)
baserev update by copy to link target
Thomas Renninger's avatar Thomas Renninger (trenn) committed (revision 128)
Thomas Renninger's avatar Thomas Renninger (trenn) committed (revision 127)
- Add -fcommon as there are a lot re-definitions which lead to errors
  and compile failures with gcc10 which enables -fno-common by default
  bsc#1160383 - acpica fails with -fno-common
Josef Möllers's avatar Josef Möllers (jmoellers) accepted request 765728 from Luigi Baldoni's avatar Luigi Baldoni (alois) (revision 126)
update to version 20200110
buildservice-autocommit accepted request 706245 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 125)
baserev update by copy to link target
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) accepted request 705731 from Jan Engelhardt's avatar Jan Engelhardt (jengelh) (revision 124)
- Use noun phrase in summary
buildservice-autocommit accepted request 704812 from Thomas Renninger's avatar Thomas Renninger (trenn) (revision 123)
baserev update by copy to link target
Displaying revisions 21 - 40 of 162
openSUSE Build Service is sponsored by