From 679d38b7a2af32ac82350561810d9ba20b1a9917 Mon Sep 17 00:00:00 2001 From: Josef Kellermann Date: Mon, 24 Jan 2011 21:07:57 +0000 Subject: [PATCH] This patch fixes an 'write_tables: coreboot table didn't fit (f0221)' issue. Signed-off-by: Josef Kellermann Acked-by: Stefan Reinauer git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6295 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/arch/x86/boot/coreboot_table.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arch/x86/boot/coreboot_table.c b/src/arch/x86/boot/coreboot_table.c index d883d2d6a..49cdb2935 100644 --- a/src/arch/x86/boot/coreboot_table.c +++ b/src/arch/x86/boot/coreboot_table.c @@ -547,7 +547,7 @@ unsigned long write_coreboot_table( if (option_table) { struct lb_record *rec_dest = lb_new_record(head); /* Copy the option config table, it's already a lb_record... */ - memcpy(rec_dest, &option_table, option_table->size); + memcpy(rec_dest, option_table, option_table->size); /* Create cmos checksum entry in coreboot table */ lb_cmos_checksum(head); } else { -- 2.25.1