diff options
author | Dan Crowell <dcrowell@us.ibm.com> | 2018-08-28 08:49:32 -0500 |
---|---|---|
committer | William G. Hoffa <wghoffa@us.ibm.com> | 2018-08-30 11:00:52 -0500 |
commit | a5e13152b439dd38a3f07a5959d923311f556cc1 (patch) | |
tree | 5a3429f057a2c29c7667c7e083bfad3739a16fd2 /src/build | |
parent | c8448c3a09aef319e9669fc1003b9fa6f79ebe5d (diff) | |
download | talos-hostboot-a5e13152b439dd38a3f07a5959d923311f556cc1.tar.gz talos-hostboot-a5e13152b439dd38a3f07a5959d923311f556cc1.zip |
Another fix to symsmode parms for debug mode
Fixed the mismatched default parm between hb-dump-debug and the
framework.
Change-Id: Id3af424ed65ed371d9c9dfc09be00212bfe87acb
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/65367
Reviewed-by: Christian R. Geddes <crgeddes@us.ibm.com>
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: William G. Hoffa <wghoffa@us.ibm.com>
Diffstat (limited to 'src/build')
-rwxr-xr-x | src/build/debug/ecmd-debug-framework.pl | 2 | ||||
-rwxr-xr-x | src/build/debug/hb-dump-debug | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/build/debug/ecmd-debug-framework.pl b/src/build/debug/ecmd-debug-framework.pl index 4c4fafe92..e7321c025 100755 --- a/src/build/debug/ecmd-debug-framework.pl +++ b/src/build/debug/ecmd-debug-framework.pl @@ -67,7 +67,7 @@ if (not $self) $tool = basename $0; } -# "" : Default - Try to use memory, fall-back to symbol files +# "default" : Default - Try to use memory, fall-back to symbol files # "usefile" : Only use the symbol files # "usemem" : Only use the data from memory my $useSymsMode = "default"; diff --git a/src/build/debug/hb-dump-debug b/src/build/debug/hb-dump-debug index 3aeffe02e..6dcac1ec7 100755 --- a/src/build/debug/hb-dump-debug +++ b/src/build/debug/hb-dump-debug @@ -52,10 +52,10 @@ if (defined ($hbDir)) } } -# "both" : Try to use memory, fall-back to symbol files +# "default" : Try to use memory, fall-back to symbol files # "usefile" : Only use the symbol files # "usemem" : Only use the data from memory -my $useSymsMode = "both"; +my $useSymsMode = "default"; GetOptions("tool:s" => \$tool, "tool-options:s" => \$toolOptions, |