diff options
author | Lee Leahy <leroy.p.leahy@intel.com> | 2016-08-02 17:40:11 -0700 |
---|---|---|
committer | Lee Leahy <leroy.p.leahy@intel.com> | 2016-08-03 18:00:29 +0200 |
commit | 3741a0b2252b2b36fb42938ae21bdb8aa228118f (patch) | |
tree | 17c5854cf5a09f5485c3fb4f1c5aec22f460b230 | |
parent | ce8ff85fe511048d84a3b885cada03a49945df2b (diff) |
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@intel.com>
Reviewed-on: https://review.coreboot.org/16041
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
-rw-r--r-- | util/checklist/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/checklist/Makefile.inc b/util/checklist/Makefile.inc index be872b0118..a96f252ae6 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 |