From d473bf9f3e3776b153d7448eb1b4dd6bd9fc1a23 Mon Sep 17 00:00:00 2001 From: Victor Hu Date: Thu, 10 Nov 2016 13:35:54 -0500 Subject: [PATCH] Disable ac97 for ppc64le platforms --- xCAT-server/lib/xcat/plugins/kvm.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/xCAT-server/lib/xcat/plugins/kvm.pm b/xCAT-server/lib/xcat/plugins/kvm.pm index a7c53d8b2d..15c0ad28c2 100755 --- a/xCAT-server/lib/xcat/plugins/kvm.pm +++ b/xCAT-server/lib/xcat/plugins/kvm.pm @@ -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'; }