diff options
-rw-r--r-- | src/arch/i386/boot/coreboot_table.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/arch/i386/boot/coreboot_table.c b/src/arch/i386/boot/coreboot_table.c index afe70d6ff6..9eb13b73f1 100644 --- a/src/arch/i386/boot/coreboot_table.c +++ b/src/arch/i386/boot/coreboot_table.c @@ -485,10 +485,11 @@ unsigned long write_coreboot_table( #if (CONFIG_HAVE_OPTION_TABLE == 1) { - struct lb_record *rec_dest; - /* Copy the option config table, it's already a lb_record... */ + struct lb_record *rec_dest, *rec_src; + /* Write the option config table... */ rec_dest = lb_new_record(head); - memcpy(rec_dest, &option_table, sizeof(option_table)); + rec_src = (struct lb_record *)(void *)&option_table; + memcpy(rec_dest, rec_src, rec_src->size); /* Create cmos checksum entry in coreboot table */ lb_cmos_checksum(head); } |