]> sourceware.org Git - systemtap.git/blame - stap-report
Add user_{int8,int16,uint16,int32,uint32,int64}.
[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"
11run "printenv | egrep '^PATH=|^LD_LIBRARY_PATH=|^SYSTEMTAP_.*='"
12run "gcc -v"
13run "uname -a"
14run "dmesg | egrep 'stap|systemtap' | tail -n 10"
15run "cat /proc/cpuinfo | egrep 'processor|vendor_id|model name'"
16if [ -x /usr/bin/dpkg ]; then
17 run "dpkg --list | egrep 'systemtap|elfutils|kernel|gcc' | awk '{print \$2,\$3}' | sort"
18else
19 run "rpm -qa --qf '%{name}-%{version} %{release}.%{arch}\\n' | egrep 'systemtap|elfutils|kernel|gcc' | sort"
20fi
21run "egrep 'PROBE|TRACE|MARKER|_DEBUG_' /lib/modules/`uname -r`/build/.config | grep -v not.set | sort | fmt -w 80"
This page took 0.05372 seconds and 5 git commands to generate.