diff options
author | Mark Wenning <wenning@us.ibm.com> | 2012-08-20 11:38:12 -0500 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2012-08-22 12:36:52 -0500 |
commit | 45f1a20db38dc14a2afde1db1aea7c167666bf28 (patch) | |
tree | 2bd1aa783cbf1e04fd2e053ed995613ec80b0390 /src/build/debug/Hostboot | |
parent | 005d9cbf75dcc516ea48c7a83289bd4671deac25 (diff) | |
download | talos-hostboot-45f1a20db38dc14a2afde1db1aea7c167666bf28.tar.gz talos-hostboot-45f1a20db38dc14a2afde1db1aea7c167666bf28.zip |
Remove SPLESS_SHUTDOWN support
Change-Id: I115111cb283d4127d483060bb602ce3f06a6aaf1
RTC: 45042
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/1566
Tested-by: Jenkins Server
Reviewed-by: Terry J. Opie <opiet@us.ibm.com>
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/build/debug/Hostboot')
-rwxr-xr-x | src/build/debug/Hostboot/Istep.pm | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/build/debug/Hostboot/Istep.pm b/src/build/debug/Hostboot/Istep.pm index fe23e3a5a..e9238f103 100755 --- a/src/build/debug/Hostboot/Istep.pm +++ b/src/build/debug/Hostboot/Istep.pm @@ -74,8 +74,6 @@ use constant RUN_ALL_MODE_SIGNATURE => 0xBADC0FFEE0DDF00D; use constant SPLESS_SINGLE_ISTEP_CMD => 0x00; use constant SPLESS_RESUME_ISTEP_CMD => 0x01; use constant SPLESS_CLEAR_TRACE_CMD => 0x02; -use constant SPLESS_SHUTDOWN_CMD => 0x03; - use constant MAX_ISTEPS => 25; use constant MAX_SUBSTEPS => 25; @@ -157,7 +155,7 @@ sub main ::userDisplay "Welcome to hb-Istep 3.31 .\n"; ::userDisplay "Note that in simics, multiple options must be in quotes,"; ::userDisplay "separated by spaces\n\n"; - + ## initialize inList to "undefined" $inList[MAX_ISTEPS][MAX_SUBSTEPS] = (); for( my $i = 0; $i < MAX_ISTEPS; $i++) @@ -166,8 +164,8 @@ sub main { undef( $inList[$i][$j] ); } - } - + } + ## --------------------------------------------------------------------------- ## Fetch the symbols we need from syms file ## --------------------------------------------------------------------------- |