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

-gerrit

commit a3b0a71fd817fdcc3a1a44cc3d4e10576c3f3126
Author: Aaron Durbin <[email protected]>
Date:   Fri Dec 14 16:49:22 2012 -0600

    intel: update fit table defaults to be valid
    
    There were 2 things wrong with the existing fit table:
    1. The version number was incorrect.
    2. The checksum wasn't correct when calculating over the table.
    
    Change-Id: Idaf942e5d93887e86b36abe817c76f8aa1cdc1ff
    Signed-off-by: Aaron Durbin <[email protected]>
---
 src/cpu/intel/fit/fit.inc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/cpu/intel/fit/fit.inc b/src/cpu/intel/fit/fit.inc
index 57a2665..e4595c0 100644
--- a/src/cpu/intel/fit/fit.inc
+++ b/src/cpu/intel/fit/fit.inc
@@ -20,11 +20,11 @@ fit_table:
  */
 .long 0x00000001
 /* Version */
-.word 0x1000
+.word 0x0100
 /* Type 0 with checksum valid. */
 .byte 0x80
 /* Checksum byte - must add to zero. */
-.byte 0x6e
+.byte 0x7d
 .fill CONFIG_CPU_INTEL_NUM_FIT_ENTRIES*16
 fit_table_end:
 .previous

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

Reply via email to