diff options
author | David Hendricks <davidhendricks@gmail.com> | 2016-05-07 11:44:05 -0700 |
---|---|---|
committer | David Hendricks <dhendrix@chromium.org> | 2016-05-16 19:19:54 +0200 |
commit | b2aa5283e6d6f21e854fa3524e923395477a23e7 (patch) | |
tree | 6a1ccd3f78fd34904a9ee6aac6f9724f534a6856 | |
parent | e065bb43d78be33060316a35685dad30ab70da0f (diff) |
board_status: Add longopt equivalents for older options
Long options can be useful when writing examples and documentation
as they are more expressive and obvious to the reader.
Change-Id: I39496765ba1f15ccc2ffe1ad730f0f95702f82b8
Signed-off-by: David Hendricks <dhendrix@chromium.org>
Reviewed-on: https://review.coreboot.org/14736
Tested-by: build bot (Jenkins)
Reviewed-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
-rwxr-xr-x | util/board_status/board_status.sh | 61 |
1 files changed, 37 insertions, 24 deletions
diff --git a/util/board_status/board_status.sh b/util/board_status/board_status.sh index 74d01091ea..4716f2cefa 100755 --- a/util/board_status/board_status.sh +++ b/util/board_status/board_status.sh @@ -172,22 +172,24 @@ show_help() { ${0} <option> Options - -h - Show this message. - -C + -C, --clobber Clobber temporary output when finished. Useful for debugging. - -i <image> + -h, --help + Show this message. + -i, --image <image> Path to coreboot image (Default is $COREBOOT_IMAGE). - -r <host> + -r, --remote-host <host> Obtain machine information from remote host (using ssh). - --ssh-port <port> - Use a specific SSH port. - -s </dev/xxx> + -s, --serial-device </dev/xxx> Obtain boot log via serial device. - -S <speed> + -S, --serial-speed <speed> Set the port speed for the serial device (Default is $SERIAL_PORT_SPEED). - -u + -u, --upload-results Upload results to coreboot.org. + +Long options: + --ssh-port <port> + Use a specific SSH port. " } @@ -197,41 +199,52 @@ if [ $? -ne 4 ]; then exit $EXIT_FAILURE fi -ARGS=$(getopt -o Chi:r:s:S:u -l "ssh-port:" -n "$0" -- "$@"); +LONGOPTS="clobber,help,image:,remote-host:,upload-results" +LONGOPTS="${LONGOPTS},serial-device:,serial-speed:" +LONGOPTS="${LONGOPTS},ssh-port:" + +ARGS=$(getopt -o Chi:r:s:S:u -l "$LONGOPTS" -n "$0" -- "$@"); if [ $? != 0 ] ; then echo "Terminating..." >&2 ; exit 1 ; fi eval set -- "$ARGS" while true ; do case "$1" in - -h) + # generic options + -C|--clobber) + CLOBBER_OUTPUT=1 + ;; + -h|--help) show_help exit $EXIT_SUCCESS ;; - -C) - CLOBBER_OUTPUT=1 - ;; - -i) + -i|--image) shift COREBOOT_IMAGE="$1" ;; - -r) + -r|--remote-host) shift REMOTE_HOST="$1" ;; - --ssh-port) - shift - REMOTE_PORT_OPTION="-p $1" + -u|--upload-results) + UPLOAD_RESULTS=1 ;; - -s) + + # serial port options + -s|--serial-device) shift SERIAL_DEVICE="$1" ;; - -S) + -S|--serial-speed) shift SERIAL_PORT_SPEED="$1" ;; - -u) - UPLOAD_RESULTS=1 + + # ssh options + --ssh-port) + shift + REMOTE_PORT_OPTION="-p $1" ;; + + # error handling --) shift if [ -n "$*" ]; then |