[coreboot-gerrit] New patch to review for coreboot: bc9814a cbfstool: fix an error in the use of makemagic.

Ronald G. Minnich (rminnich@gmail.com) gerrit at coreboot.org
Fri Apr 18 18:41:28 CEST 2014


Ronald G. Minnich (rminnich at gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/5544

-gerrit

commit bc9814aae61351f8baa1de28cf29ce21f8854849
Author: Ronald G. Minnich <rminnich at google.com>
Date:   Fri Apr 18 09:40:12 2014 -0700

    cbfstool: fix an error in the use of makemagic.
    
    This fixes an error in the creation of the BSS payload constant.
    
    Change-Id: If55021a7bf3fc3399e2de0adaa457d0c08ff7352
    Signed-off-by: Ronald G. Minnich <rminnich at google.com>
---
 util/cbfstool/cbfs.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/util/cbfstool/cbfs.h b/util/cbfstool/cbfs.h
index a561b2b..1ce615a 100644
--- a/util/cbfstool/cbfs.h
+++ b/util/cbfstool/cbfs.h
@@ -73,7 +73,7 @@ struct cbfs_stage {
 
 #define PAYLOAD_SEGMENT_CODE	makemagic('C', 'O', 'D', 'E')
 #define PAYLOAD_SEGMENT_DATA	makemagic('D', 'A', 'T', 'A')
-#define PAYLOAD_SEGMENT_BSS     makemagic(' ', 'B', 'S', 'S')
+#define PAYLOAD_SEGMENT_BSS     makemagic('B', 'S', 'S', ' ')
 #define PAYLOAD_SEGMENT_PARAMS	makemagic('P', 'A', 'R', 'A')
 #define PAYLOAD_SEGMENT_ENTRY	makemagic('E', 'N', 'T', 'R')
 



More information about the coreboot-gerrit mailing list