diff options
author | Vladimir Serbinenko <phcoder@gmail.com> | 2014-01-06 20:40:27 +0100 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2014-01-23 20:37:48 +0100 |
commit | 2657e841097b33bc6f50470f852d2e54fb35f5f6 (patch) | |
tree | e9bcd8d212099c20543dd5b9ecdb2fd074d13f6b /src/arch/x86/boot/tables.c | |
parent | b2939f7486b80a3f7fc5fc7fd5723dd58984d31d (diff) | |
download | coreboot-2657e841097b33bc6f50470f852d2e54fb35f5f6.tar.xz |
Multiboot: remove multiboot tables generation.
GRUB2-as-payload doesn't use them. Libpayload can live with just coreboot tables
if loaded as payload. memtest86+ can use them but is buggy with them. Solaris
needs a huge boot archive not supported by coreboot and too big to fit in
flash (dozens of megabytes). All-in-all looks like no users are left for this.
Change-Id: Id92f73be5a397db80f5b0132ee57c37ee6eeb563
Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com>
Reviewed-on: http://review.coreboot.org/4628
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/arch/x86/boot/tables.c')
-rw-r--r-- | src/arch/x86/boot/tables.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/arch/x86/boot/tables.c b/src/arch/x86/boot/tables.c index 40bf087cc3..e980ed816c 100644 --- a/src/arch/x86/boot/tables.c +++ b/src/arch/x86/boot/tables.c @@ -27,7 +27,6 @@ #include <arch/smp/mpspec.h> #include <arch/acpi.h> #include <string.h> -#include <cpu/x86/multiboot.h> #include <cbmem.h> #include <lib.h> #include <smbios.h> @@ -54,7 +53,7 @@ struct lb_memory *write_tables(void) rom_table_end = 0xf0000; /* Start low addr at 0x500, so we don't run into conflicts with the BDA - * in case our data structures grow beyond 0x400. Only multiboot, GDT + * in case our data structures grow beyond 0x400. Only GDT * and the coreboot table use low_tables. */ low_table_start = 0; @@ -243,13 +242,6 @@ struct lb_memory *write_tables(void) rom_table_start, rom_table_end); } -#if CONFIG_MULTIBOOT - post_code(0x9d); - - /* The Multiboot information structure */ - write_multiboot_info(rom_table_end); -#endif - /* Print CBMEM sections */ cbmem_list(); |