[coreboot-gerrit] New patch to review for coreboot: util/checklist: Process .debug files before .elf files

Lee Leahy (leroy.p.leahy@intel.com) gerrit at coreboot.org
Wed Aug 3 02:48:59 CEST 2016


Lee Leahy (leroy.p.leahy at intel.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/16041

-gerrit

commit a276e1c2c6691646c5570fc89abd32a7458b2ae1
Author: Lee Leahy <leroy.p.leahy at intel.com>
Date:   Tue Aug 2 17:40:11 2016 -0700

    util/checklist: Process .debug files before .elf files
    
    Ensure that the output file is created by processing the .debug files
    before the .elf files.
    
    TEST=Build and run on Galileo Gen2
    
    Change-Id: Ief8d774249c9d8eb313f3d10f04d7e4f2e3cf491
    Signed-off-by: Lee Leahy <leroy.p.leahy at intel.com>
---
 util/checklist/Makefile.inc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/util/checklist/Makefile.inc b/util/checklist/Makefile.inc
index be872b0..a96f252 100644
--- a/util/checklist/Makefile.inc
+++ b/util/checklist/Makefile.inc
@@ -59,8 +59,8 @@ ifeq ($(CONFIG_CREATE_BOARD_CHECKLIST),y)
 # Extract the symbol table from the image
 #
 %.symbol_table: %.elf %.debug
-	$(NM_$(class)) $< > $@
-	$(NM_$(class)) $(*D)/$(*F).debug >> $@
+	$(NM_$(class)) $(*D)/$(*F).debug > $@
+	$(NM_$(class)) $< >> $@
 
 #
 # All symbols in the image



More information about the coreboot-gerrit mailing list