summaryrefslogtreecommitdiffstats
path: root/src/build/debug/vpo-debug-framework.pl
diff options
context:
space:
mode:
authorThi Tran <thi@us.ibm.com>2012-03-21 14:59:18 -0500
committerA. Patrick Williams III <iawillia@us.ibm.com>2012-03-27 13:10:31 -0500
commite365e2055da924ce134e2f8263d47a6afba23e98 (patch)
treea6193f31b2d7fa05c884dca26a7f5250eddd9487 /src/build/debug/vpo-debug-framework.pl
parentf037d0552a46caae37b0e7371fc6ce4837ecce1c (diff)
downloadtalos-hostboot-e365e2055da924ce134e2f8263d47a6afba23e98.tar.gz
talos-hostboot-e365e2055da924ce134e2f8263d47a6afba23e98.zip
Update HB tool directories and VBU tool names
- mww branch hb-istep-notimeout patch 3 fix SeqNum Change-Id: I1d676ae7d2a3f3e9114ea00f5d3542aa280fdd52 Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/781 Tested-by: Jenkins Server Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/build/debug/vpo-debug-framework.pl')
-rwxr-xr-xsrc/build/debug/vpo-debug-framework.pl14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/build/debug/vpo-debug-framework.pl b/src/build/debug/vpo-debug-framework.pl
index 713b35ebd..4c51c6938 100755
--- a/src/build/debug/vpo-debug-framework.pl
+++ b/src/build/debug/vpo-debug-framework.pl
@@ -51,7 +51,7 @@ use constant NUMTHREADS => 8;
my %optionInfo = (
"--test" => ["Use the hbicore_test.syms file instead of the default."],
"--img-path=<path>" => ["The path to the \"img\" directory where the syms file, etc is located.",
- "User can also set the env variable HBDIR to the path of the \"img\"",
+ "User can also set the env variable HB_IMGDIR to the path of the \"img\"",
"directory instead of using this option."],
"--out-path=<path>" => ["The path to the directory where the output will be saved."],
"--debug" => ["Enable debug tracing."],
@@ -85,7 +85,7 @@ my $fh;
my $vbuToolDir = "/gsa/ausgsa/projects/h/hostboot/vbutools/latest";
my $imgPath = "";
-my $hbDir = $ENV{'HBDIR'};
+my $hbDir = $ENV{'HB_IMGDIR'};
if (defined ($hbDir))
{
if ($hbDir ne "")
@@ -252,7 +252,7 @@ sub flushL2
#stop instructions
stopInstructions("all");
- my $command = "$vbuToolDir/p8_l2_flush_wrap.x86 @ecmdOpt $flag";
+ my $command = "$vbuToolDir/proc_l2_flush_wrap.x86 @ecmdOpt $flag";
die "ERROR: cannot flush L2" if (system("$command") != 0);
$l2Flushed = 1;
@@ -380,7 +380,7 @@ sub stopInstructions
my $thread = shift;
#Stopping all threads
- my $command = "$vbuToolDir/p8_thread_control.x86 @ecmdOpt -stop -t$thread $flag";
+ my $command = "$vbuToolDir/proc_thread_control.x86 @ecmdOpt -stop -t$thread $flag";
if ($debug)
{
@@ -396,7 +396,7 @@ sub startInstructions
my $thread = shift;
#Starting all threads
- my $command = "$vbuToolDir/p8_thread_control.x86 @ecmdOpt -start -t$thread $flag";
+ my $command = "$vbuToolDir/proc_thread_control.x86 @ecmdOpt -start -t$thread $flag";
if ($debug)
{
@@ -428,7 +428,7 @@ sub queryThreadState
{
my $thread = shift;
- my $command = "$vbuToolDir/p8_thread_control.x86 @ecmdOpt -query -t$thread";
+ my $command = "$vbuToolDir/proc_thread_control.x86 @ecmdOpt -query -t$thread";
my $result = `$command`;
if ($debug)
@@ -710,7 +710,7 @@ Use the hbicore_test.syms file instead of the default.
=item B<--img-path>=PATH
The path to the "img" directory where the syms file, etc is located.
-User can also set the env variable HBDIR to the path of the "img"
+User can also set the env variable HB_IMGDIR to the path of the "img"
directory instead of using this option.
=item B<--out-path>=PATH
OpenPOWER on IntegriCloud