diff options
| author | Mark Wenning <wenning@us.ibm.com> | 2012-08-01 08:44:18 -0500 |
|---|---|---|
| committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2012-08-30 13:32:41 -0500 |
| commit | 4a2f7b1d5010d9ac8c179ec34f038264ae393a5a (patch) | |
| tree | de7958178acbc580ddc8c78f82637be3e16a79c9 /src/build/debug/Hostboot | |
| parent | 37e3944aa7e811d12028eddc1a790c8a5726d857 (diff) | |
| download | talos-hostboot-4a2f7b1d5010d9ac8c179ec34f038264ae393a5a.tar.gz talos-hostboot-4a2f7b1d5010d9ac8c179ec34f038264ae393a5a.zip | |
proc_prep_master_winkle
Change-Id: I7e0ea508c75e0e368e3bfde9dcaef1788169dcf3
RTC: 44818
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/1517
Tested-by: Jenkins Server
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 | 40 |
1 files changed, 21 insertions, 19 deletions
diff --git a/src/build/debug/Hostboot/Istep.pm b/src/build/debug/Hostboot/Istep.pm index e9238f103..a1b868955 100755 --- a/src/build/debug/Hostboot/Istep.pm +++ b/src/build/debug/Hostboot/Istep.pm @@ -1,26 +1,26 @@ #!/usr/bin/perl -# IBM_PROLOG_BEGIN_TAG -# This is an automatically generated prolog. +# IBM_PROLOG_BEGIN_TAG +# This is an automatically generated prolog. # -# $Source: src/build/debug/Hostboot/Istep.pm $ +# $Source: src/build/debug/Hostboot/Istep.pm $ # -# IBM CONFIDENTIAL +# IBM CONFIDENTIAL # -# COPYRIGHT International Business Machines Corp. 2011-2012 +# COPYRIGHT International Business Machines Corp. 2011,2012 # -# p1 +# p1 # -# Object Code Only (OCO) source materials -# Licensed Internal Code Source Materials -# IBM HostBoot Licensed Internal Code +# Object Code Only (OCO) source materials +# Licensed Internal Code Source Materials +# IBM HostBoot Licensed Internal Code # -# The source code for this program is not published or other- -# wise divested of its trade secrets, irrespective of what has -# been deposited with the U.S. Copyright Office. +# The source code for this program is not published or otherwise +# divested of its trade secrets, irrespective of what has been +# deposited with the U.S. Copyright Office. # -# Origin: 30 +# Origin: 30 # -# IBM_PROLOG_END_TAG +# IBM_PROLOG_END_TAG # # Purpose: This perl script works in concert with do_sprint to # implement isteps on AWAN. @@ -152,7 +152,7 @@ sub main ::userDisplay "args: $k => $v\n"; } - ::userDisplay "Welcome to hb-Istep 3.31 .\n"; + ::userDisplay "Welcome to hb-Istep 3.33 .\n"; ::userDisplay "Note that in simics, multiple options must be in quotes,"; ::userDisplay "separated by spaces\n\n"; @@ -567,12 +567,14 @@ sub isShutDown() if ( $opt_debug ) { ::userDisplay "=== isShutDown : Shutdown Flag = $flag\n"; - ::userDisplay "=== isShutDown : Shutdown Status = $status\n"; + ::userDisplay "=== isShutDown : Shutdown Status = ", + sprintf( "0x%x", $status), "\n"; } if ( $flag ) { - ::userDisplay "HostBoot has shut down with status $status.\n"; + ::userDisplay "HostBoot has shut down with status ", + sprintf( "0x%x", $status), ".\n"; return 1; } @@ -780,7 +782,7 @@ sub runIStep( $$ ) else { ::userDisplay "Istep $stsIStep.$stsSubstep $inList[$istep][$substep] returned Status: ", - sprintf("0x%x",$istepStatus), + sprintf("%d",$istepStatus), "\n" ; if ( $istepStatus == 0xa ) { @@ -947,7 +949,7 @@ sub setMode( $ ) ## check for system crash if ( isShutDown( ) ) { - ::userDisplay "Cannot run HostBoot\n"; + ::userDisplay "Cannot run HostBoot.\n"; return -1; } |

