source: rtems/c/src/lib/libbsp/powerpc/psim/tools/psim-gdb @ 486f49a2

4.104.114.84.95
Last change on this file since 486f49a2 was 486f49a2, checked in by Joel Sherrill <joel.sherrill@…>, on 12/30/04 at 20:22:02

2004-12-30 Joel Sherrill <joel@…>

  • Makefile.am, psim: Split psim into two files.
  • psim-gdb: New file.
  • Property mode set to 100755
File size: 1.5 KB
Line 
1#! /bin/sh
2#
3#  Shell script to ease invocation of the powerpc simulator
4#
5#  COPYRIGHT (c) 1989-2004.
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.rtems.com/license/LICENSE.
11#
12#  $Id$
13#
14
15TREE_FILE=psim_tree.${LOGNAME}
16GDB_FILE=gdb_tree.${LOGNAME}
17
18#  Build this user's device tree file
19echo "/#address-cells 2"                              >  ${TREE_FILE}
20#echo "/openprom/options/oea-memory-size 4194304"      >> ${TREE_FILE}
21echo "/openprom/options/oea-memory-size 8388608"      >> ${TREE_FILE}
22# These require the semaphore and shared memory device models.
23# echo "/shm@0xc0000000/reg 0xc0000000 0x10000"         >> ${TREE_FILE}
24# echo "/shm@0xc0000000/key ${RTEMS_SHM_KEY}"           >> ${TREE_FILE}
25# echo "/sem@0xc0010000/reg 0xc0010000 12"              >> ${TREE_FILE}
26# echo "/sem@0xc0010000/key ${RTEMS_SHM_SEMAPHORE_KEY}" >> ${TREE_FILE}
27# echo "/sem@0xc0010000/value -1"                       >> ${TREE_FILE}
28#
29#  Build this user's gdb script
30echo "tar sim -f ${TREE_FILE} ${GDB_DEBUG}"           >  ${GDB_FILE}
31echo "load"                                           >> ${GDB_FILE}
32echo "b _Internal_error_Occurred"                     >> ${GDB_FILE}
33echo "b rtems_fatal_error_occurred"                   >> ${GDB_FILE}
34echo "b __assert"                                     >> ${GDB_FILE}
35
36GDB=powerpc-rtems4.7-gdb
37
38${GDB} -x ${GDB_FILE} $*
39
40exit $?
41
Note: See TracBrowser for help on using the repository browser.