mirror of https://github.com/thesofproject/sof.git
19 lines
671 B
Bash
Executable File
19 lines
671 B
Bash
Executable File
#!/bin/bash
|
|
# Exemplatory usage of sof-coredump-reader.py ($reader_name)
|
|
# We read from dump file into sof-coredump-reader.py, then we pipe its output
|
|
# to xt-gdb, which operates on given elf-file.
|
|
|
|
THIS_SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
|
|
elf="${1}"
|
|
dump="${2}"
|
|
|
|
reader_name="sof-coredump-reader.py" # in case it is changed
|
|
reader_output="$(${THIS_SCRIPT_DIR}/${reader_name} -vc -i ${dump} --stdout -l 4)"
|
|
reader_result="$?" # if $reader_name script fails, running xt-gdb is pointless
|
|
if [[ ${reader_result} -ne 0 ]] ; then
|
|
echo "${reader_name} failed!"
|
|
exit ${reader_result}
|
|
else
|
|
xt-gdb "${elf}" < <(echo "${reader_output}")
|
|
fi
|