From 4e6128de017bc63f095156c1ac36457c7df43caa Mon Sep 17 00:00:00 2001 From: xq2005 Date: Wed, 18 Apr 2012 09:18:03 +0000 Subject: [PATCH] update the cmdlist with crashkernelsize attribute git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@12260 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/sles.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xCAT-server/lib/xcat/plugins/sles.pm b/xCAT-server/lib/xcat/plugins/sles.pm index d2ca454aa..c8b17d9b8 100644 --- a/xCAT-server/lib/xcat/plugins/sles.pm +++ b/xCAT-server/lib/xcat/plugins/sles.pm @@ -522,12 +522,12 @@ sub mknetboot #create the kcmd for node to support kdump if ($dump){ if ($crashkernelsize){ - $kcmdline .= " crashkernel=$crashkernelsize\@32M dump=$dump "; + $kcmdline .= " crashkernel=$crashkernelsize dump=$dump "; } else{ # for ppc64, the crashkernel paramter should be "128M@32M", otherwise, some kernel crashes will be met if ($arch eq "ppc64"){ - $kcmdline .= " crashkernel=128M\@32M dump=$dump "; + $kcmdline .= " crashkernel=256M\@64M dump=$dump "; } if ($arch =~ /86/){ $kcmdline .= " crashkernel=128M dump=$dump ";