]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2009-09-14 José Martínez <xosemp@gmail.com>
authorrobertmh <robertmh@localhost>
Mon, 14 Sep 2009 15:38:30 +0000 (15:38 +0000)
committerrobertmh <robertmh@localhost>
Mon, 14 Sep 2009 15:38:30 +0000 (15:38 +0000)
        * commands/acpi.c (grub_cmd_acpi): Fix loading ACPI tables from file.

ChangeLog
commands/acpi.c

index 69b65bf67568321ed1bbc71532508ae89eb92adb..42e141472c6e3737f508c6f91a512ea6f904bc92 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2009-09-14  José Martínez  <xosemp@gmail.com>
+
+       * commands/acpi.c (grub_cmd_acpi): Fix loading ACPI tables from file.
+
 2009-09-14  Colin Watson  <cjwatson@ubuntu.com>
 
        * util/grub.d/30_os-prober.in: Cope with Windows 7 in os-prober
index d903d446daaa644df2a82e1259b06882e030282d..e7cb9e6b4ca877d1f5ec4fc020378512c7627ecd 100644 (file)
@@ -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;
        }
     }