summaryrefslogtreecommitdiff
path: root/printpcs
diff options
context:
space:
mode:
Diffstat (limited to 'printpcs')
-rwxr-xr-xprintpcs14
1 files changed, 0 insertions, 14 deletions
diff --git a/printpcs b/printpcs
deleted file mode 100755
index 81d039b..0000000
--- a/printpcs
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-
-# Decode the symbols from a panic EIP list
-
-# Find a working addr2line
-for p in i386-jos-elf-addr2line addr2line; do
- if which $p 2>&1 >/dev/null && \
- $p -h 2>&1 | grep -q '\belf32-i386\b'; then
- break
- fi
-done
-
-# Enable as much pretty-printing as this addr2line can do
-$p $($p -h | grep ' -[aipsf] ' | awk '{print $1}') -e kernel "$@"