Alexandru Gagniuc ([email protected]) just uploaded a new patch set to 
gerrit, which you can find at http://review.coreboot.org/1453

-gerrit

commit 009934f7822fa6eefeb0f2e74aaee29bc4048348
Author: Alexandru Gagniuc <[email protected]>
Date:   Wed Aug 15 06:36:00 2012 -0500

    coreinfo: fix build error (TRIVIAL)
    
    Changes to libpayload, and lack of maintenance to coreinfo, and it no
    longer builds. Fix that.
    
    Change-Id: I03497880671f42b5aeb6db08ddf6ce2acd243a18
    Signed-off-by: Alexandru Gagniuc <[email protected]>
---
 payloads/coreinfo/coreboot_module.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/payloads/coreinfo/coreboot_module.c 
b/payloads/coreinfo/coreboot_module.c
index 77a4bb2..e5ba50f 100644
--- a/payloads/coreinfo/coreboot_module.c
+++ b/payloads/coreinfo/coreboot_module.c
@@ -142,7 +142,7 @@ static void parse_mainboard(unsigned char *ptr)
 {
        struct cb_mainboard *mb = (struct cb_mainboard *)ptr;
 
-       strncpy(cb_info.vendor, cb_mb_vendor_part(mb), sizeof(cb_info.vendor) - 
1);
+       strncpy(cb_info.vendor, cb_mb_vendor_string(mb), sizeof(cb_info.vendor) 
- 1);
        strncpy(cb_info.part, cb_mb_part_string(mb), sizeof(cb_info.part) - 1);
 }
 

-- 
coreboot mailing list: [email protected]
http://www.coreboot.org/mailman/listinfo/coreboot

Reply via email to