diff --git a/xCAT-server/lib/xcat/plugins/kvm.pm b/xCAT-server/lib/xcat/plugins/kvm.pm index 7f8ffb852..166303d55 100644 --- a/xCAT-server/lib/xcat/plugins/kvm.pm +++ b/xCAT-server/lib/xcat/plugins/kvm.pm @@ -135,7 +135,11 @@ sub build_oshash { my @bootdevs = split(/[:,]/,$bootorder); my $bootnum = 0; foreach (@bootdevs) { - $rethash{boot}->[$bootnum]->{dev}=$_; + if ("net" eq $_ or "n" eq $_) { + $rethash{boot}->[$bootnum]->{dev}="network"; + } else { + $rethash{boot}->[$bootnum]->{dev}=$_; + } $bootnum++; } } else {