Rudolf Marek (r.marek@assembler.cz) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1504
-gerrit
commit 87c44b6c3511ae8ba6e56e45a6282e5b8ce1cfe7 Author: Rudolf Marek r.marek@assembler.cz Date: Tue Sep 11 15:07:14 2012 +0200
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 --- util/genprof/log2dress | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/util/genprof/log2dress b/util/genprof/log2dress index 429f846..c901a81 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