diff options
author | David Hendricks <dhendrix@chromium.org> | 2013-11-12 16:45:37 -0800 |
---|---|---|
committer | David Hendricks <dhendrix@chromium.org> | 2013-11-17 10:31:30 +0100 |
commit | 16955fd6654cc50ce8776c6c176bacd9316585f5 (patch) | |
tree | 0585fc3b6b6c96a5dde8ab94ca06b6d78f177057 /util/board_status | |
parent | 1b6e7a67489138848edfc641522297b0263b739c (diff) |
board_status.sh: Make clobber option use 'C' instead of 'c'
Clobbering output is only really useful when debugging the script.
Since we're only using short options, let's save 'c' for something
more important.
Change-Id: If87a70fdc0cd006818d1736c40f9984dfec663a9
Signed-off-by: David Hendricks <dhendrix@chromium.org>
Reviewed-on: http://review.coreboot.org/4047
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'util/board_status')
-rw-r--r-- | util/board_status/board_status.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util/board_status/board_status.sh b/util/board_status/board_status.sh index 12d1ecddf4..689eda9ac0 100644 --- a/util/board_status/board_status.sh +++ b/util/board_status/board_status.sh @@ -25,8 +25,8 @@ show_help() { Options -h Show this message. - -c - Clobber temporary output when finished. Useful when not uploading. + -C + Clobber temporary output when finished. Useful for debugging. -r <host> Obtain machine information from remote host (using ssh). -u @@ -86,13 +86,13 @@ cmd() exit $EXIT_FAILURE } -while getopts "chr:u" opt; do +while getopts "Chr:u" opt; do case "$opt" in h) show_help exit $EXIT_SUCCESS ;; - c) + C) CLOBBER_OUTPUT=1 ;; r) |