Readme revision 7b1019a6d29ccb7999dc76cba3dde1c627e8e609
b00044a2eb43864b8718585d21949611a2ee59efJames CarlsonThis file and its contents are supplied under the terms of the
b00044a2eb43864b8718585d21949611a2ee59efJames CarlsonCommon Development and Distribution License ("CDDL"), version 1.0.
b00044a2eb43864b8718585d21949611a2ee59efJames CarlsonYou may only use this file in accordance with the terms of version
b00044a2eb43864b8718585d21949611a2ee59efJames Carlson1.0 of the CDDL.
b00044a2eb43864b8718585d21949611a2ee59efJames CarlsonA full copy of the text of the CDDL should have accompanied this
b00044a2eb43864b8718585d21949611a2ee59efJames Carlsonsource. A copy of the CDDL is also available via the Internet at
b00044a2eb43864b8718585d21949611a2ee59efJames CarlsonCopyright 2016 Joyent, Inc.
b00044a2eb43864b8718585d21949611a2ee59efJames CarlsonThere is a bug in the interaction of acpidump and acpixtract when the table
b00044a2eb43864b8718585d21949611a2ee59efJames Carlsonsize is greater than 1MB. The acpixtract code will stop parsing a table if
b00044a2eb43864b8718585d21949611a2ee59efJames Carlsonthe first character on a line is not a space (' '). The acpidump code will
b00044a2eb43864b8718585d21949611a2ee59efJames Carlsonoverflow the offset into the first character after 1MB. Until this is fixed
b00044a2eb43864b8718585d21949611a2ee59efJames Carlsonupstream, the following patch can be used against new versions of the acpi
b00044a2eb43864b8718585d21949611a2ee59efJames Carlson@@ -97,7 +97,7 @@ AcpiUtDumpBuffer (
b00044a2eb43864b8718585d21949611a2ee59efJames Carlson /* Print current offset */
b00044a2eb43864b8718585d21949611a2ee59efJames Carlson- AcpiOsPrintf ("%6.4X: ", (BaseOffset + i));
b00044a2eb43864b8718585d21949611a2ee59efJames Carlson+ AcpiOsPrintf ("%7.4X: ", (BaseOffset + i));
b00044a2eb43864b8718585d21949611a2ee59efJames Carlson /* Print 16 hex chars */
b00044a2eb43864b8718585d21949611a2ee59efJames Carlson@@ -279,7 +279,7 @@ AcpiUtDumpBufferToFile (
b00044a2eb43864b8718585d21949611a2ee59efJames Carlson /* Print current offset */
b00044a2eb43864b8718585d21949611a2ee59efJames Carlson- AcpiUtFilePrintf (File, "%6.4X: ", (BaseOffset + i));
b00044a2eb43864b8718585d21949611a2ee59efJames Carlson+ AcpiUtFilePrintf (File, "%7.4X: ", (BaseOffset + i));
b00044a2eb43864b8718585d21949611a2ee59efJames Carlson /* Print 16 hex chars */