From: robertmh Date: Mon, 14 Sep 2009 15:38:30 +0000 (+0000) Subject: 2009-09-14 José Martínez X-Git-Tag: 1.98~534 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dabf179886463a50956b64fda9fd003abcc83928;p=thirdparty%2Fgrub.git 2009-09-14 José Martínez * commands/acpi.c (grub_cmd_acpi): Fix loading ACPI tables from file. --- diff --git a/ChangeLog b/ChangeLog index 69b65bf67..42e141472 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2009-09-14 José Martínez + + * commands/acpi.c (grub_cmd_acpi): Fix loading ACPI tables from file. + 2009-09-14 Colin Watson * util/grub.d/30_os-prober.in: Cope with Windows 7 in os-prober diff --git a/commands/acpi.c b/commands/acpi.c index d903d446d..e7cb9e6b4 100644 --- a/commands/acpi.c +++ b/commands/acpi.c @@ -681,6 +681,9 @@ grub_cmd_acpi (struct grub_extcmd *cmd, table->size = size; table->addr = buf; playground_size += table->size; + + table->next = acpi_tables; + acpi_tables = table; } }