diff options
author | RajithaY <rajithax.yerrumsetty@intel.com> | 2017-04-25 03:31:15 -0700 |
---|---|---|
committer | Rajitha Yerrumchetty <rajithax.yerrumsetty@intel.com> | 2017-05-22 06:48:08 +0000 |
commit | bb756eebdac6fd24e8919e2c43f7d2c8c4091f59 (patch) | |
tree | ca11e03542edf2d8f631efeca5e1626d211107e3 /qemu/roms/u-boot/tools/netconsole | |
parent | a14b48d18a9ed03ec191cf16b162206998a895ce (diff) |
Adding qemu as a submodule of KVMFORNFV
This Patch includes the changes to add qemu as a submodule to
kvmfornfv repo and make use of the updated latest qemu for the
execution of all testcase
Change-Id: I1280af507a857675c7f81d30c95255635667bdd7
Signed-off-by:RajithaY<rajithax.yerrumsetty@intel.com>
Diffstat (limited to 'qemu/roms/u-boot/tools/netconsole')
-rwxr-xr-x | qemu/roms/u-boot/tools/netconsole | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/qemu/roms/u-boot/tools/netconsole b/qemu/roms/u-boot/tools/netconsole deleted file mode 100755 index 1a0ef2224..000000000 --- a/qemu/roms/u-boot/tools/netconsole +++ /dev/null @@ -1,63 +0,0 @@ -#!/bin/sh - -usage() { - ( - echo "Usage: $0 <board-IP> [board-port [board-in-port]]" - echo "" - echo "If port is not specified, '6666' will be used" - [ -z "$*" ] && exit 0 - echo "" - echo "ERROR: $*" - exit 1 - ) 1>&2 - exit $? -} - -while [ -n "$1" ] ; do - case $1 in - -h|--help) usage;; - --) break;; - -*) usage "Invalid option $1";; - *) break;; - esac - shift -done - -ip=$1 -board_out_port=${2:-6666} -board_in_port=${3:-${board_out_port}} - -echo Board out port: ${board_out_port} -echo Board in port: ${board_in_port} - -if [ -z "${ip}" ] || [ -n "$4" ] ; then - usage "Invalid number of arguments" -fi - -for nc in netcat nc ; do - type ${nc} >/dev/null 2>&1 && break -done - -trap "stty icanon echo intr ^C" 0 2 3 5 10 13 15 -echo "NOTE: the interrupt signal (normally ^C) has been remapped to ^T" - -stty -icanon -echo intr ^T -( -if type ncb 2>/dev/null ; then - # see if ncb is in $PATH - exec ncb ${board_out_port} - -elif [ -x ${0%/*}/ncb ] ; then - # maybe it's in the same dir as the netconsole script - exec ${0%/*}/ncb ${board_out_port} - -else - # blah, just use regular netcat - while ${nc} -u -l -p ${board_out_port} < /dev/null ; do - : - done -fi -) & -pid=$! -${nc} -u ${ip} ${board_in_port} -kill ${pid} 2>/dev/null |