]> sourceware.org Git - systemtap.git/blame - stap-report
PR13513: undo PR11759 PREEMPT_RT hack
[systemtap.git] / stap-report
CommitLineData
46cfaf7b 1#! /bin/sh
d68088d0 2
46cfaf7b
FCE
3run(){
4 echo "== $1 =="
5 sh -c "$@"
6}
d68088d0 7
46cfaf7b
FCE
8run "stap -V"
9run "which stap"
10run "locate --regex '/stap(run)?$' | xargs ls -ald"
dafe728e 11run "printenv | egrep '^PATH=|^LD_LIBRARY_PATH=|^SYSTEMTAP_.*=|^XDG_DATA.*='"
4e3b15e6 12run "stap -vv -p4 -e 'probe begin {exit()}'"
46cfaf7b
FCE
13run "gcc -v"
14run "uname -a"
15run "dmesg | egrep 'stap|systemtap' | tail -n 10"
16run "cat /proc/cpuinfo | egrep 'processor|vendor_id|model name'"
17if [ -x /usr/bin/dpkg ]; then
18 run "dpkg --list | egrep 'systemtap|elfutils|kernel|gcc' | awk '{print \$2,\$3}' | sort"
19else
20 run "rpm -qa --qf '%{name}-%{version} %{release}.%{arch}\\n' | egrep 'systemtap|elfutils|kernel|gcc' | sort"
21fi
22run "egrep 'PROBE|TRACE|MARKER|_DEBUG_' /lib/modules/`uname -r`/build/.config | grep -v not.set | sort | fmt -w 80"
dafe728e 23run "find /debugfs /proc /sys /dev -name '*kprobes*' 2>/dev/null | xargs grep ."
This page took 0.069139 seconds and 5 git commands to generate.