[coreboot] New patch to review for coreboot: a3b0a71 intel: update fit table defaults to be valid

Stefan Reinauer (stefan.reinauer@coreboot.org) gerrit at coreboot.org
Tue Mar 12 00:10:53 CET 2013


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

-gerrit

commit a3b0a71fd817fdcc3a1a44cc3d4e10576c3f3126
Author: Aaron Durbin <adurbin at chromium.org>
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 <adurbin at chromium.org>
---
 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



More information about the coreboot mailing list