From 8c65b87fbdc8dac2beb2a5dbeb4b8129a97fff65 Mon Sep 17 00:00:00 2001 From: immarvin Date: Tue, 7 Jul 2015 01:36:51 -0400 Subject: [PATCH] for pkvm osimage, the netboot value should be petitboot --- perl-xCAT/xCAT/Utils.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/perl-xCAT/xCAT/Utils.pm b/perl-xCAT/xCAT/Utils.pm index 010d95cfd..2f5327080 100644 --- a/perl-xCAT/xCAT/Utils.pm +++ b/perl-xCAT/xCAT/Utils.pm @@ -4594,6 +4594,8 @@ sub lookupNetboot{ }elsif($osarch =~ /^ppc64$/i){ if(($osv =~ /rh/i and $osn < 7) or ($osv =~ /sles/i and ($osn < 11 or ($osn == 11 and $osm < 4)))){ $ret="yaboot"; + }elsif($osv =~ /pkvm/i){ + $ret="petitboot"; }else{ $ret="grub2,grub2-tftp,grub2-http"; }