From: Antti Kantee Date: Thu, 16 Apr 2015 12:19:07 +0000 (+0000) Subject: Remove the old dogdb.sh script. X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=51105631ee00b9bd5f38cd2a12f59b9dde024247;p=people%2Fliuw%2Frumprun.git Remove the old dogdb.sh script. Use rumprun -D instead. One way of doing things(tm) --- diff --git a/platform/xen/utils/dogdb.sh b/platform/xen/utils/dogdb.sh deleted file mode 100755 index 0b2a5be..0000000 --- a/platform/xen/utils/dogdb.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh - -# -# simple script which can be run with constant parameters to invoke gdbsx -# - -[ $(id -u) = 0 ] || { echo must be root ; exit 1; } - -case `uname -m` in -i*86) - bits=32 - ;; -i86pc) - bits=32 - ;; -*) - bits=64 - ;; -esac -domid=$(xl list | awk '$1 == "'${1:-rump-kernel}'"{print $2}') - -gdbsx -a ${domid} ${bits} ${2:-1234}