Skip to content

Commit

Permalink
Merge pull request #2144 from whowutwut/kvm_ac97
Browse files Browse the repository at this point in the history
Disable ac97 for ppc64le platforms for KVM
  • Loading branch information
zet809 authored Nov 11, 2016
2 parents 3512059 + d473bf9 commit ed5a846
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions xCAT-server/lib/xcat/plugins/kvm.pm
Original file line number Diff line number Diff line change
Expand Up @@ -897,6 +897,9 @@ sub build_xmldesc {
}
if (defined($hypcpumodel) and $hypcpumodel eq 'ppc64') {
$xtree{devices}->{emulator}->{content} = "/usr/bin/qemu-system-ppc64";
} elsif (defined($hypcpumodel) and $hypcpumodel eq 'ppc64le') {
# do nothing for ppc64le, do not support sound at this time
;
} else {
$xtree{devices}->{sound}->{model} = 'ac97';
}
Expand Down

0 comments on commit ed5a846

Please sign in to comment.