This patch fixes an 'write_tables: coreboot table didn't fit (f0221)' issue.

Signed-off-by: Josef Kellermann <Joseph.Kellermann@heitec.de>
Acked-by: Stefan Reinauer <stefan.reinauer@coreboot.org>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6295 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Josef Kellermann 2011-01-24 21:07:57 +00:00 committed by Stefan Reinauer
parent 6e29665309
commit 679d38b7a2
1 changed files with 1 additions and 1 deletions

View File

@ -547,7 +547,7 @@ unsigned long write_coreboot_table(
if (option_table) { if (option_table) {
struct lb_record *rec_dest = lb_new_record(head); struct lb_record *rec_dest = lb_new_record(head);
/* Copy the option config table, it's already a lb_record... */ /* 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 */ /* Create cmos checksum entry in coreboot table */
lb_cmos_checksum(head); lb_cmos_checksum(head);
} else { } else {