aboutsummaryrefslogtreecommitdiff
path: root/scripts/scsi_satl
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/scsi_satl')
-rwxr-xr-xscripts/scsi_satl18
1 files changed, 13 insertions, 5 deletions
diff --git a/scripts/scsi_satl b/scripts/scsi_satl
index 2bbdf195..12b4c10a 100755
--- a/scripts/scsi_satl
+++ b/scripts/scsi_satl
@@ -24,11 +24,12 @@
# This script uses utilities from sg3_utils package (version
# 1.22 or later) and sdparm (version 0.99 or later)
#
-# Douglas Gilbert 20080328
+# Douglas Gilbert 20090815
-quiet=0
log=0
+quiet=0
+verbose=""
file_err=0
inv_opcode=0
@@ -47,10 +48,11 @@ total_err=0
usage()
{
- echo "Usage: scsi_satl [-h] [-L] [-q] <device>"
+ echo "Usage: scsi_satl [-h] [-L] [-q] [-v] <device>"
echo " where: -h, --help print usage message"
echo " -L, --log append stderr to 'scsi_satl.err'"
echo " -q, --quiet suppress some output"
+ echo " -v, --verbose more verbose output"
echo ""
echo "Check <device> for SCSI to ATA Translation Layer (SATL) support"
}
@@ -71,6 +73,7 @@ while test ! -z "$opt" -a -z "${opt##-*}"; do
h|-help) usage ; exit 1 ;;
L|-log) let log=$log+1 ;;
q|-quiet) let quiet=$quiet+1 ;;
+ v|-verbose) verbose="-v" ;;
*) echo "Unknown option: -$opt " ; exit 1 ;;
esac
shift
@@ -87,9 +90,14 @@ do
if [ $log -eq 0 ]
then
- $command $1 > /dev/null 2>> /dev/null
+ if [ $verbose ]
+ then
+ $command $verbose $1 > /dev/null
+ else
+ $command $1 > /dev/null 2>> /dev/null
+ fi
else
- $command $1 > /dev/null 2>> scsi_satl.err
+ $command $verbose $1 > /dev/null 2>> scsi_satl.err
fi
res=$?
case "$res" in