diff options
author | Rudolf Marek <r.marek@assembler.cz> | 2012-09-11 15:07:14 +0200 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2012-09-13 10:11:53 +0200 |
commit | 73ab60a9d40601c2309aee38b9cb5d85a9cf6c23 (patch) | |
tree | 2908507bd88849e5393af9a4d5d00d758eb152ec /util/genprof | |
parent | 4b14e82e134bfcebfc2d7846a6a83fb9eefffd57 (diff) |
Fix ramstage location in trace scripts
The ramstage location has been changed. Reflect this in the script.
Change-Id: I76c9b38a8ffe2188e94146e845d23536625c0979
Signed-off-by: Rudolf Marek <r.marek@assembler.cz>
Reviewed-on: http://review.coreboot.org/1504
Tested-by: build bot (Jenkins)
Reviewed-by: Marc Jones <marcj303@gmail.com>
Diffstat (limited to 'util/genprof')
-rwxr-xr-x | util/genprof/log2dress | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/genprof/log2dress b/util/genprof/log2dress index 429f8461d1..c901a81d78 100755 --- a/util/genprof/log2dress +++ b/util/genprof/log2dress @@ -10,9 +10,9 @@ A=`echo $line | cut -c 1` if [ "$A" = '~' ] ; then FROM=`echo $line | tr \~ \( | tr \) \( | awk -F\( '{print $3}'` TO=`echo $line | tr \~ \( | tr \) \(|awk -F\( '{print $2}'` -addr2line -e ../../build/coreboot_ram.debug "$FROM" | tr -d "\n" +addr2line -e ../../build/cbfs/fallback/coreboot_ram.debug "$FROM" | tr -d "\n" echo -n " calls " -addr2line -e ../../build/coreboot_ram.debug "$TO" +addr2line -e ../../build/cbfs/fallback/coreboot_ram.debug "$TO" else echo "$line" fi |