Revision: 2595
http://svn.sv.gnu.org/viewvc/?view=rev&root=grub&revision=2595
Author: robertmh
Date: 2009-09-14 15:38:30 +0000 (Mon, 14 Sep 2009)
Log Message:
-----------
2009-09-14 Jos?\195?\169 Mart?\195?\173nez <[email protected]>
* commands/acpi.c (grub_cmd_acpi): Fix loading ACPI tables from file.
Modified Paths:
--------------
trunk/grub2/ChangeLog
trunk/grub2/commands/acpi.c
Modified: trunk/grub2/ChangeLog
===================================================================
--- trunk/grub2/ChangeLog 2009-09-14 11:32:00 UTC (rev 2594)
+++ trunk/grub2/ChangeLog 2009-09-14 15:38:30 UTC (rev 2595)
@@ -1,3 +1,7 @@
+2009-09-14 José MartÃnez <[email protected]>
+
+ * commands/acpi.c (grub_cmd_acpi): Fix loading ACPI tables from file.
+
2009-09-14 Colin Watson <[email protected]>
* util/grub.d/30_os-prober.in: Cope with Windows 7 in os-prober
Modified: trunk/grub2/commands/acpi.c
===================================================================
--- trunk/grub2/commands/acpi.c 2009-09-14 11:32:00 UTC (rev 2594)
+++ trunk/grub2/commands/acpi.c 2009-09-14 15:38:30 UTC (rev 2595)
@@ -681,6 +681,9 @@
table->size = size;
table->addr = buf;
playground_size += table->size;
+
+ table->next = acpi_tables;
+ acpi_tables = table;
}
}