2009-09-14 José Martínez <xosemp@gmail.com>

* commands/acpi.c (grub_cmd_acpi): Fix loading ACPI tables from file.
This commit is contained in:
robertmh 2009-09-14 15:38:30 +00:00
parent d52109a7a2
commit dabf179886
2 changed files with 7 additions and 0 deletions

View file

@ -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> 2009-09-14 Colin Watson <cjwatson@ubuntu.com>
* util/grub.d/30_os-prober.in: Cope with Windows 7 in os-prober * util/grub.d/30_os-prober.in: Cope with Windows 7 in os-prober

View file

@ -681,6 +681,9 @@ grub_cmd_acpi (struct grub_extcmd *cmd,
table->size = size; table->size = size;
table->addr = buf; table->addr = buf;
playground_size += table->size; playground_size += table->size;
table->next = acpi_tables;
acpi_tables = table;
} }
} }