diff --git a/xCAT-server/lib/xcat/plugins/anaconda.pm b/xCAT-server/lib/xcat/plugins/anaconda.pm index 3801b4682..fc337d37b 100644 --- a/xCAT-server/lib/xcat/plugins/anaconda.pm +++ b/xCAT-server/lib/xcat/plugins/anaconda.pm @@ -406,6 +406,8 @@ sub mkinstall my %hents = %{$hmtab->getNodesAttribs(\@nodes, ['serialport', 'serialspeed', 'serialflow'])}; + my $addkcmdhash = + $bptab->getNodesAttribs(\@nodes, ['addkcmdline']); require xCAT::Template; foreach $node (@nodes) { @@ -611,6 +613,14 @@ sub mkinstall } } $kcmdline .= " noipv6"; + # add the addkcmdline attribute to the end + # of the command, if it exists + my $addkcmd = $addkcmdhash->{$node}->[0]; + # add the extra addkcmd command info, if in the table + if ($addkcmd->{'addkcmdline'}) { + $kcmdline .= " "; + $kcmdline .= $addkcmd->{'addkcmdline'}; + } $bptab->setNodeAttribs( $node,