diff --git a/perl-xCAT/xCAT/PPC.pm b/perl-xCAT/xCAT/PPC.pm index 81e7edf0d..493eec173 100644 --- a/perl-xCAT/xCAT/PPC.pm +++ b/perl-xCAT/xCAT/PPC.pm @@ -444,7 +444,15 @@ sub preprocess_nodes { if(@$d[4] =~/^(fsp|lpar)$/) { $f1 = 1; } else { - $f2 = 1; + $f2 = 1; + my $exargs=$request->{arg}; + my $t= xCAT::PPCrflash::print_var($exargs, "exargs"); + if ( grep(/commit/,@$exargs) != 0 || grep(/recover/,@$exargs) != 0) { + send_msg( $request, 1, "When run \"rflash\" with the \"commit\" or \"recover\" operation, the noderange cannot be BPA and can only be CEC or LPAR."); + send_msg( $request, 1, "And then, it will do the operation for both managed systems and power subsystems."); + return undef; + } + } } diff --git a/perl-xCAT/xCAT/PPCrflash.pm b/perl-xCAT/xCAT/PPCrflash.pm index 04588e5d5..6721167aa 100644 --- a/perl-xCAT/xCAT/PPCrflash.pm +++ b/perl-xCAT/xCAT/PPCrflash.pm @@ -307,28 +307,32 @@ sub get_lic_filenames { sub get_one_mtms { - my $bpa = shift; - my $tab = xCAT::Table->new("ppc"); - my $msg ; - unless ($tab) { - $msg = "ERROR: Unable to open basic ppc table for configuration"; - return ("", $msg); - } + my $exp = shift; + my $bpa = shift; + my $cmd = "lssyscfg -r cage -e $bpa"; + my $mtms; + my $msg; + + my $values = xCAT::PPCcli::send_cmd( $exp, $cmd ); + my $Rc = shift(@$values); + + ##################################### + # Return error + ##################################### + if ( $Rc != SUCCESS ) { + $msg = "ERROR: Failed to find a CEC managed by $bpa on the HMC"; + return ("", $msg); + } + + foreach (@$values) { + if( $_ =~ /cage_num=(\w*),contents=sys,type_model_serial_num=(\w+)-(\w+)\*(\w+),loc_code=(\w+).(\w+).(\w+)/) { + $mtms = "$2-$3*$4"; + last; + } + } - ################################# - # Get node - ################################# - my @ent = $tab->getAllAttribsWhere("parent=\"$bpa\"", 'node'); - if (@ent < 0) { - $msg = "failed to get the CEC whose parent is $bpa!"; - return ("", $msg); - } - my $cec = $ent[0]->{node}; - $msg = "the first cec is $cec whose parent is $bpa!"; - $cec =~ /(\w{6})\-([\w\-]{8})\-SN(\w{7})/; - my $mtms = "$2*$3"; -# print "the managed system is $mtms!\n"; + # print "the managed system is $mtms!\n"; return ($mtms, $msg); } @@ -468,7 +472,7 @@ sub rflash { #If mtms is a bpa, we should change the managed_system to a cec whose parent is a bpa. if($component eq "power") { - ($managed_system, $msg)= &get_one_mtms($name); + ($managed_system, $msg)= &get_one_mtms($exp, $managed_system); if($managed_system eq "") { push(@value, [$hmc, $msg]); return (\@value); diff --git a/xCAT-client/pods/man1/rflash.1.pod b/xCAT-client/pods/man1/rflash.1.pod index 8cb86c15f..b6982cd78 100644 --- a/xCAT-client/pods/man1/rflash.1.pod +++ b/xCAT-client/pods/man1/rflash.1.pod @@ -30,7 +30,7 @@ The flash chip of a POWER5 and POWER6 managed system or power subsystem stores f The B<--commit> flag is used to write the contents of the temporary side of the flash to the permanent side. This flag should be used after updating code and verifying correct system operation. The B<--recover> flag is used to write the permanent side of the flash chip back to the temporary side. This flag should be used to recover from a corrupt flash operation, so that the previously running code can be restored. -BAt present, the B command B support B for BPAs. Because the command "B" on HMC doesn't support the "B" and "B" operation for the BPA. And "B" is dependent on the "B" command. So when the B<--commit> or B<--recover> two flags is used, the noderange cannot be a BPA or BPA list in the B command. xCAT will pay the attention to the changes all the time. +BWhen the B<--commit> or B<--recover> two flags is used, the noderange B be BPA. It only B be CEC or LPAR ,and will take effect for B managed systems and power subsystems. xCAT recommends that you shutdown your Operating System images and power off your managed systems before applying disruptive updates to managed systems or power subsystems. @@ -96,7 +96,7 @@ B I I<-p /tmp/fw> I<--activate disruptive> =item 3 -To commit a firmware update to permanent flash on an HMC-attached CEC, enter: +To commit a firmware update to permanent flash for both managed system and the related power subsystems, enter: B I I<--commit> diff --git a/xCAT-client/share/doc/xCAT2pLinux.odt b/xCAT-client/share/doc/xCAT2pLinux.odt index 9b7cac9d4..0f76992b3 100644 Binary files a/xCAT-client/share/doc/xCAT2pLinux.odt and b/xCAT-client/share/doc/xCAT2pLinux.odt differ