Suppress kernel output on nbroot boot

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@1014 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
jbjohnso 2008-04-09 21:12:36 +00:00
parent 24c610374d
commit 6089d5ca52

View File

@ -104,7 +104,7 @@ sub setdestiny {
my $arch = $ent->{arch};
my $ent = $noderes->getNodeAttribs($_,[qw(xcatmaster)]);
my $master;
my $kcmdline;
my $kcmdline = "quiet ";
if ($mastent and $mastent->{value}) {
$master = $mastent->{value};
}
@ -113,7 +113,7 @@ sub setdestiny {
}
$ent = $noderes->getNodeAttribs($_,['serialport']);
if ($ent and defined($ent->{serialport})) {
$kcmdline = "console=ttyS".$ent->{serialport};
$kcmdline .= "console=ttyS".$ent->{serialport};
$ent = $nodehm->getNodeAttribs($_,['serialspeed']);
unless ($ent and defined($ent->{serialspeed})) {
$callback->({error=>["Serial port defined in noderes, but no nodehm.serialspeed set for $_"],errorcode=>[1]});