73ab60a9d4
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>
20 lines
552 B
Bash
Executable file
20 lines
552 B
Bash
Executable file
#!/bin/bash
|
|
#Parse a log and get back the function names and line numbers
|
|
#Provide a log file as first argument
|
|
|
|
#Please rewrite to something more saner !
|
|
|
|
cat $1 | while read line ; do
|
|
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/cbfs/fallback/coreboot_ram.debug "$FROM" | tr -d "\n"
|
|
echo -n " calls "
|
|
addr2line -e ../../build/cbfs/fallback/coreboot_ram.debug "$TO"
|
|
else
|
|
echo "$line"
|
|
fi
|
|
|
|
done
|