summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/stacktrace_resolve.awk11
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/stacktrace_resolve.awk b/tools/stacktrace_resolve.awk
new file mode 100644
index 0000000..a8254a7
--- /dev/null
+++ b/tools/stacktrace_resolve.awk
@@ -0,0 +1,11 @@
+/k\/[0-9A-Fa-f]{8}/ {
+ print;
+ addr = substr($0, match($0, /k\/[0-9A-Fa-f]{8}/) + 2, RLENGTH - 2);
+ if (addr != "00000000") {
+ printf " ";
+ system("addr2line -psfe out/fs/boot/kernel.bin 0x" addr);
+ }
+ next;
+}
+
+{ print; }