From b91ddddf5362457620ff459c4b3387e433a53653 Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Wed, 25 Jan 2012 20:26:07 +0000 Subject: [PATCH] Fix problem where a kernel parameter would not have a space delineating it from next parameter in RHEL/CentOS/Fedora/SL installs git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@11413 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/anaconda.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xCAT-server/lib/xcat/plugins/anaconda.pm b/xCAT-server/lib/xcat/plugins/anaconda.pm index ff027c7d6..8f67292b0 100644 --- a/xCAT-server/lib/xcat/plugins/anaconda.pm +++ b/xCAT-server/lib/xcat/plugins/anaconda.pm @@ -663,7 +663,7 @@ sub mknetboot next; } $kcmdline .= - "console=tty0 console=ttyS" . $sent->{serialport} . "," . $sent->{serialspeed}; + " console=tty0 console=ttyS" . $sent->{serialport} . "," . $sent->{serialspeed}; if ($sent->{serialflow} =~ /(hard|tcs|ctsrts)/) { $kcmdline .= "n8r"; @@ -1118,7 +1118,7 @@ sub mkinstall } #go cmdline if serial console is requested, the shiny ansi is just impractical $kcmdline .= - "cmdline console=tty0 console=ttyS" + " cmdline console=tty0 console=ttyS" . $sent->{serialport} . "," . $sent->{serialspeed}; if ($sent->{serialflow} =~ /(hard|cts|ctsrts)/)