source: rtems/c/src/lib/libbsp/powerpc/psim/tools/psim @ 5f57730

4.104.114.84.95
Last change on this file since 5f57730 was 08311cc3, checked in by Joel Sherrill <joel.sherrill@…>, on 11/17/99 at 17:51:34

Updated copyright notice.

  • Property mode set to 100755
File size: 1.7 KB
Line 
1#! /bin/sh
2#
3#  Shell script to ease invocation of the powerpc simulator
4#
5#  COPYRIGHT (c) 1989-1999.
6#  On-Line Applications Research Corporation (OAR).
7#
8#  The license and distribution terms for this file may be
9#  found in found in the file LICENSE in this distribution or at
10#  http://www.OARcorp.com/rtems/license.html.
11#
12#  $Id$
13#
14
15TREE_FILE=psim_tree.${LOGNAME}
16GDB_FILE=gdb_tree.${LOGNAME}
17
18# GDB_DEBUG="-t sem-device"
19# RUN_DEBUG="-t sem_device"
20
21#  Build this user's device tree file
22echo "/#address-cells 2"                              >  ${TREE_FILE}
23#echo "/openprom/options/oea-memory-size 4194304"      >> ${TREE_FILE}
24echo "/openprom/options/oea-memory-size 8388608"      >> ${TREE_FILE}
25# These require the semaphore and shared memory device models.
26# echo "/shm@0xc0000000/reg 0xc0000000 0x10000"         >> ${TREE_FILE}
27# echo "/shm@0xc0000000/key ${RTEMS_SHM_KEY}"           >> ${TREE_FILE}
28# echo "/sem@0xc0010000/reg 0xc0010000 12"              >> ${TREE_FILE}
29# echo "/sem@0xc0010000/key ${RTEMS_SHM_SEMAPHORE_KEY}" >> ${TREE_FILE}
30# echo "/sem@0xc0010000/value -1"                       >> ${TREE_FILE}
31#
32#  Build this user's gdb script
33echo "tar sim -f ${TREE_FILE} ${GDB_DEBUG}"           >  ${GDB_FILE}
34echo "load"                                           >> ${GDB_FILE}
35echo "b _Internal_error_Occurred"                     >> ${GDB_FILE}
36echo "b rtems_fatal_error_occurred"                   >> ${GDB_FILE}
37echo "b __assert"                                     >> ${GDB_FILE}
38
39RUN=powerpc-rtems-run
40GDB=powerpc-rtems-gdb
41
42case $0 in
43   *gdb*)
44     ${GDB} -x ${GDB_FILE} $*
45     ;;
46   *)
47     # ${RUN} -f ${TREE_FILE} $*
48     ${RUN} -f ${TREE_FILE} ${RUN_DEBUG} $*
49     ;;
50esac
51exit $?
52
Note: See TracBrowser for help on using the repository browser.