diff options
author | Mike Jones <mjjones@us.ibm.com> | 2013-07-10 09:50:02 -0500 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2013-07-10 16:17:36 -0500 |
commit | 0aeba5cadc42db18dc4cb83ffc67e36d88698edd (patch) | |
tree | 1ad222ba6314a8798c18521f7bbd709ec4ca2e26 /src/usr/hwpf | |
parent | 324eb052b3493eb4723a7c3f3dc56b50dba27516 (diff) | |
download | talos-hostboot-0aeba5cadc42db18dc4cb83ffc67e36d88698edd.tar.gz talos-hostboot-0aeba5cadc42db18dc4cb83ffc67e36d88698edd.zip |
HWPF: Fix bug interpreting gard request from FAPI Error XML
The bug means that a gard request is interpreted as a deconfigure
request. Simple fix. Elliott spotted this, there is no RTC.
Change-Id: I0363bb2d6e7bb23ddad522cf3c13a761c4bdb200
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/5360
Tested-by: Jenkins Server
Reviewed-by: Brian H. Horton <brianh@linux.ibm.com>
Reviewed-by: Donald E. Dahle <dedahle@us.ibm.com>
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/hwpf')
-rwxr-xr-x | src/usr/hwpf/fapi/fapiParseErrorInfo.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usr/hwpf/fapi/fapiParseErrorInfo.pl b/src/usr/hwpf/fapi/fapiParseErrorInfo.pl index cbab50f07..0117cf077 100755 --- a/src/usr/hwpf/fapi/fapiParseErrorInfo.pl +++ b/src/usr/hwpf/fapi/fapiParseErrorInfo.pl @@ -596,7 +596,7 @@ foreach my $argnum (1 .. $#ARGV) { # Add the Target to cdgTargetHash to be processed with any # callout and deconfigure requests - $cdgTargetHash{$gard->{target}}{deconf} = 1; + $cdgTargetHash{$gard->{target}}{gard} = 1; } elsif (exists $gard->{childTargets}) { |