From dabf179886463a50956b64fda9fd003abcc83928 Mon Sep 17 00:00:00 2001 From: robertmh Date: Mon, 14 Sep 2009 15:38:30 +0000 Subject: [PATCH] =?UTF-8?q?2009-09-14=20=20Jos=C3=A9=20Mart=C3=ADnez=20=20?= =?UTF-8?q??= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * commands/acpi.c (grub_cmd_acpi): Fix loading ACPI tables from file. --- ChangeLog | 4 ++++ commands/acpi.c | 3 +++ 2 files changed, 7 insertions(+) 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; } }