[PATCH] btrace: don't be quiet by default, and fix -h parameter
authorJens Axboe <axboe@suse.de>
Mon, 30 Jan 2006 20:35:31 +0000 (21:35 +0100)
committerJens Axboe <axboe@suse.de>
Mon, 30 Jan 2006 20:35:31 +0000 (21:35 +0100)
btrace

diff --git a/btrace b/btrace
index 38ea1cee940838f59676901d7a5b55b328b22c03..d8a31549221fe86d9a83347590c31ffb3e8fb523 100755 (executable)
--- a/btrace
+++ b/btrace
@@ -8,11 +8,11 @@
 
 TRACEOPTS=""
 PARSEOPTS="-b100000"
-SUMMARIZE="-q" # quiet (no dev/cpu summary by default)
+SUMMARIZE=""
 USAGE="Usage: btrace [-s] [-t] [-S] [-w N] [-a <trace>...] <dev>..."
 DIRNAME=`dirname $0`
 
-while getopts "a:stSw:" c
+while getopts "a:stSw:h" c
 do
        case $c in
        a)      TRACEOPTS=$TRACEOPTS" -a "$OPTARG" ";;