Fixed some issues in the container lists in the Makefile and in
containers.cfg. An obscure KVM bug was not digesting host-model
properly on some architectures causing a kernal panic on boot.
In order to work around that bug, host-passthrough will be used
until KVM is fixed in ubuntu16.04. This bug doesn't exist in
ubuntu14.
Change-Id: I7b99bd249ca3222d47cbc6a642177f7e6390049a
diff --git a/Vagrantfile b/Vagrantfile
index 7ae899c..7806a05 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -51,6 +51,10 @@
d.vm.provider Provider do |v|
v.memory = 6144
v.cpus = 4
+ if settings['vProvider'] == "KVM"
+ v.cpu_mode = 'host-passthrough'
+ v.cpu_fallback = 'allow'
+ end
end
end