summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/psim/tools/psim-top.in
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-06-11 17:23:34 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-06-11 17:23:34 +0000
commitcf5dfce19bc33dfecb27f9f6c45dea30f6565f5e (patch)
tree703b28ad98ce5eb225418d378b6dea00cd2cb5fa /c/src/lib/libbsp/powerpc/psim/tools/psim-top.in
parent2011-06-11 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-cf5dfce19bc33dfecb27f9f6c45dea30f6565f5e.tar.bz2
2011-06-11 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am, configure.ac: runtest for this BSP obsoleted by rtems-testing/sim-scripts support. Please use those scripts. * tools/.cvsignore, tools/ChangeLog, tools/Makefile.am, tools/configure.ac, tools/psim-bottom, tools/psim-gdb-bottom, tools/psim-gdb-top.in, tools/psim-shared, tools/psim-top.in, tools/runtest-bottom, tools/runtest-top.in: Removed.
Diffstat (limited to 'c/src/lib/libbsp/powerpc/psim/tools/psim-top.in')
-rwxr-xr-xc/src/lib/libbsp/powerpc/psim/tools/psim-top.in45
1 files changed, 0 insertions, 45 deletions
diff --git a/c/src/lib/libbsp/powerpc/psim/tools/psim-top.in b/c/src/lib/libbsp/powerpc/psim/tools/psim-top.in
deleted file mode 100755
index 4b1d29650f..0000000000
--- a/c/src/lib/libbsp/powerpc/psim/tools/psim-top.in
+++ /dev/null
@@ -1,45 +0,0 @@
-#! @KSH@ -p
-#
-# Shell script to ease invocation of the powerpc simulator
-#
-# COPYRIGHT (c) 1989-2008.
-# On-Line Applications Research Corporation (OAR).
-#
-# The license and distribution terms for this file may be
-# found in the file LICENSE in this distribution or at
-# http://www.rtems.com/license/LICENSE.
-#
-# $Id$
-#
-
-TREE_FILE=psim_tree.${LOGNAME}
-
-rtemsTarget=@target_alias@
-
-progname=${0##*/} # fast basename hack for ksh, bash
-
-USAGE=\
-"usage: $progname [ -opts ] test [ test ... ]
- -v -- verbose
- -h -- this message
- -s -- force System V IPC support on (default=auto)
- -l limit -- specify time limit (default is 'no limit')
- -d -- generate device tree as 'test'.device and exit
- -n -- enable NIC support ***REQUIRES PATCHED PSIM***
-"
-
-# log an error to stderr
-prerr()
-{
- echo "$*" >&2
-}
-
-fatal() {
- [ "$1" ] && prerr $*
- prerr "$USAGE"
- exit 1
-}
-
-warn() {
- [ "$1" ] && prerr $*
-}