[PATCH] Fix 'acpi' command loading tables from disk

2009-09-10 Thread xose
0644 --- 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;

Re: [PATCH] Fix 'acpi' command loading tables from disk

2009-09-12 Thread xose
On Sun, Sep 13, 2009 at 2:27 AM, Robert Millan wrote: > On Thu, Sep 10, 2009 at 02:21:14PM +0200, xose wrote: >> The 'acpi' command currently fails to add ACPI tables loaded from >> disk. The files are read and parsed correctly, but the tables are >> never ac