]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
xen: recognize device_model_override
authorOlaf Hering <olaf@aepfle.de>
Fri, 20 Nov 2020 12:29:14 +0000 (13:29 +0100)
committerJim Fehlig <jfehlig@suse.com>
Mon, 7 Dec 2020 22:38:31 +0000 (15:38 -0700)
Since Xen 4.2 libxl expects device_model_override="/path" instead of
device_model="/path". Adjust the code to parse this as <emulator>.

While libxl also recognizes device_model_version="", this knob is not
required for libvirt. A runtime detection exists in libvirt to select
either "qemu-xen" or "qemu-xen-traditional".
Since qemu-xen-traditional is marked as supported just for stubdoms
there is no need to handle it.

Test data files with 'device_model' were adjusted to use
'device_model_override' instead.

Signed-off-by: Olaf Hering <olaf@aepfle.de>
Reviewed-by: Jim Fehlig <jfehlig@suse.com>
61 files changed:
src/libxl/xen_common.c
tests/xlconfigdata/test-disk-positional-parms-full.cfg
tests/xlconfigdata/test-disk-positional-parms-partial.cfg
tests/xlconfigdata/test-disk-qed.cfg
tests/xlconfigdata/test-fullvirt-acpi-slic.cfg
tests/xlconfigdata/test-fullvirt-cpuid.cfg
tests/xlconfigdata/test-fullvirt-direct-kernel-boot-bogus-extra.cfg
tests/xlconfigdata/test-fullvirt-direct-kernel-boot-extra.cfg
tests/xlconfigdata/test-fullvirt-direct-kernel-boot.cfg
tests/xlconfigdata/test-fullvirt-hpet-timer.cfg
tests/xlconfigdata/test-fullvirt-hypervisor-features.cfg
tests/xlconfigdata/test-fullvirt-multi-timer.cfg
tests/xlconfigdata/test-fullvirt-multiserial.cfg
tests/xlconfigdata/test-fullvirt-multiusb.cfg
tests/xlconfigdata/test-fullvirt-nestedhvm-disabled.cfg
tests/xlconfigdata/test-fullvirt-nestedhvm.cfg
tests/xlconfigdata/test-fullvirt-nohap.cfg
tests/xlconfigdata/test-fullvirt-ovmf.cfg
tests/xlconfigdata/test-fullvirt-ovswitch-tagged.cfg
tests/xlconfigdata/test-fullvirt-ovswitch-trunked.cfg
tests/xlconfigdata/test-fullvirt-pci.cfg
tests/xlconfigdata/test-fullvirt-tsc-timer.cfg
tests/xlconfigdata/test-fullvirt-type.cfg
tests/xlconfigdata/test-fullvirt-vnuma-autocomplete.cfg
tests/xlconfigdata/test-fullvirt-vnuma-nodistances.cfg
tests/xlconfigdata/test-fullvirt-vnuma-partialdist.cfg
tests/xlconfigdata/test-fullvirt-vnuma.cfg
tests/xlconfigdata/test-net-fakemodel.cfg
tests/xlconfigdata/test-new-disk.cfg
tests/xlconfigdata/test-qemu-passthrough.cfg
tests/xlconfigdata/test-rbd-multihost-noauth.cfg
tests/xlconfigdata/test-spice-features.cfg
tests/xlconfigdata/test-spice.cfg
tests/xlconfigdata/test-vif-multi-ip.cfg
tests/xlconfigdata/test-vif-rate.cfg
tests/xlconfigdata/test-vif-typename.cfg
tests/xmconfigdata/test-escape-paths.cfg
tests/xmconfigdata/test-fullvirt-default-feature.cfg
tests/xmconfigdata/test-fullvirt-force-hpet.cfg
tests/xmconfigdata/test-fullvirt-force-nohpet.cfg
tests/xmconfigdata/test-fullvirt-localtime.cfg
tests/xmconfigdata/test-fullvirt-net-netfront.cfg
tests/xmconfigdata/test-fullvirt-new-cdrom.cfg
tests/xmconfigdata/test-fullvirt-nohap.cfg
tests/xmconfigdata/test-fullvirt-parallel-tcp.cfg
tests/xmconfigdata/test-fullvirt-serial-file.cfg
tests/xmconfigdata/test-fullvirt-serial-null.cfg
tests/xmconfigdata/test-fullvirt-serial-pipe.cfg
tests/xmconfigdata/test-fullvirt-serial-pty.cfg
tests/xmconfigdata/test-fullvirt-serial-stdio.cfg
tests/xmconfigdata/test-fullvirt-serial-tcp-telnet.cfg
tests/xmconfigdata/test-fullvirt-serial-tcp.cfg
tests/xmconfigdata/test-fullvirt-serial-udp.cfg
tests/xmconfigdata/test-fullvirt-serial-unix.cfg
tests/xmconfigdata/test-fullvirt-sound.cfg
tests/xmconfigdata/test-fullvirt-usbmouse.cfg
tests/xmconfigdata/test-fullvirt-usbtablet.cfg
tests/xmconfigdata/test-fullvirt-utc.cfg
tests/xmconfigdata/test-no-source-cdrom.cfg
tests/xmconfigdata/test-pci-dev-syntax.cfg
tests/xmconfigdata/test-pci-devs.cfg

index 407d28aaa53a086374c9efaf70e4219ae21ee6ec..2d1f5ea5f5f90a9f1efb7f1c02bbf2263474dddd 100644 (file)
@@ -1508,7 +1508,7 @@ xenParseConfigCommon(virConfPtr conf,
     if (xenParseTimeOffset(conf, def) < 0)
         return -1;
 
-    if (xenConfigCopyStringOpt(conf, "device_model", &def->emulator) < 0)
+    if (xenConfigCopyStringOpt(conf, "device_model_override", &def->emulator) < 0)
         return -1;
 
     if (STREQ(nativeFormat, XEN_CONFIG_FORMAT_XL)) {
@@ -2242,7 +2242,7 @@ static int
 xenFormatEmulator(virConfPtr conf, virDomainDefPtr def)
 {
     if (def->emulator &&
-        xenConfigSetString(conf, "device_model", def->emulator) < 0)
+        xenConfigSetString(conf, "device_model_override", def->emulator) < 0)
         return -1;
 
     return 0;
index 217d4dccf382765fafe3ce6419df4148e6080031..b5965945e139e79100875ad06581785cf44885d4 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 940304e7b2187cef3b6b9d9c42a202d2c8dfc4f7..be5e23e39eb27678c889a367355070eb5aeb7520 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 78421767debba2bd3f04a2332afb37b8d07a83b9..5ae93f4d8ad2cbf8109a1995b88f9c939e3c9aba 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 99b17263433b3b5806102b3ba43335a9d5c4eb32..b5bd9c9790de5dd8239aa0441c9bea4c928d78f7 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index bb7b9c7b32ee67db0eda49b10f24fd8fd52a17fd..e71a87dfe8d20f8a89ce7b410c6bf872f43a1278 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 8012737c8854749d3952851af42f94498ceb950e..455ae0cee32f920764e706ac0dce40b85d04d4b1 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 4ed5a90e18d2089409586908da378d60804f6c38..10e64b0876c6c8a16ab441f3672c02fb495dc5cd 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 110f0a0cd1a2496985f0abc030a6c59aad694bc5..f52c33dd3eb8827e6a080d30643267ccc5a3b5f3 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index a566bd75a3fe2366816b37a37a9f824994ddd5eb..b73ebf330c49e1a8051590080215308e0d25fe6a 100644 (file)
@@ -14,7 +14,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 88f018c823847833ba989ebbf2c3b9115e802a41..87156cc2db74fe3f122bbd532e0f6895d6f0d830 100644 (file)
@@ -13,7 +13,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 5a78585821c1e2414fcbb85cbe4cd03317236603..c897b2a16144f9cbd4a34801f27c0d3d8d53ab38 100644 (file)
@@ -15,7 +15,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 1fd765b087a558a9d420abc03effb18f9f1bff3d..25bc4506e7b7e0e699dbba541cf28d34e35fe7a7 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 6d456deb214870886a96e62dc3a8e799ac38e4eb..afb041d53ccea1bd966dbb32d9a2811271aaa4d6 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index d4b9f452dee6344141a41da9e817e947a9bfd341..bdf94e79e22b4d864b8b0ce086b40b8052f25407 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 281f1268a5330707ac459db5ec746e500b8d5674..5882bfee9f7dabd1e5d901e2b146e8871ecc5a7c 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index e7e933df6e245bb97f66a8845a1a08ab0ac431d4..4235909f079a9d6ba91c285d9c38142c0084295f 100644 (file)
@@ -13,7 +13,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index b08e7fd98a1f9fd370e9895dbac70df17942b45c..4d31a81108cca94e3a7eecba4f3e16eda3e95183 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 6a3dc3cfebaff537aee3a23a284cdcb332da7d0c..5ba84ad22a784f9761343648e34f3174a3337c9c 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 29e9d38ae80e92fb6f782e5ad863746e93b862af..edd53c9a084b4c398e905083f372bdf4453e23f4 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 5a3f572e254110c83b322ca50b72f8351fc07d4f..e639cf9c836d0d02779feef9b98585f14ff7c387 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 587d3461f86ecb20311703a410123603a7c7d824..a30052dbf7fca75e1ce550c87cbafa6e4d6f797a 100644 (file)
@@ -14,7 +14,7 @@ localtime = 1
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index f8ecc2e190425af50586dfa00a7a7269e7aaacf7..9a9854ef388b0c35abc04a89a6b45ae6749b1db8 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 0
 parallel = "none"
index edba69a1726d2300ba8d49a122b66d1f8aab0439..98b7ca7f4ff70ebb4524eb834c6c909d7fa2223c 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 8186edfee054e97db0cb6eea870e54164587ec5f..88f1c03fcb5fa4aae35b088e82d60675c431b480 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 861a50e76b8c17e3995424e20f90f1ecbe5ae3b9..e117794086eee69c536efa441196ccf086fcd71e 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 91e233ac27065a7d94d8bbbf25a7f135d5418a04..2220159ba43d57cb00fcb548597ed8f2b1629d1a 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 70bd922ac03264fd3b91ca0d35ed8a69de2ef884..6df0a0dc41ec270f7f55d4eb3321a99ac3f2ca88 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 4fe76b257f5d9a2fb725a2497344c4adb0583eb2..20dca0c25745cf008c76a01b9c2bc3bbae618094 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 42aad92205da5c8b42045079f02816789db47f44..79347d0ac8d8b2bf602f771e54f1e48a876395bc 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 01c15d59a13a1d2f94709b19fa66467b4da35c27..5906865047b44c16e5c59f5ec6c0bafd165c92c1 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index f8a25e497a267374dcf1bb29aef17d5faa67abdd..944c653d705bbd4f6715052200e10709a5ca378c 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 vif = [ "mac=00:16:3e:66:92:9c,bridge=xenbr1,script=vif-bridge,model=e1000" ]
 parallel = "none"
 serial = "none"
index abdf63dd254fc2e179f2a281228832c7bccc8966..976c166e049e725639b550adae2730ab924df885 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 vif = [ "mac=00:16:3e:66:92:9c,bridge=xenbr1,script=vif-bridge,model=e1000" ]
 parallel = "none"
 serial = "none"
index 4a5d37f960261f5ee98af33de0391e909220a697..b082b9b22be4f12207046c1ff7437d2e05bd1e52 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 34a19a29b609208f32462a80fc9a208bcf6b1d21..f6270c2d1e810e52c4125788ee4b31bdccaab685 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index fb5d94c27a63124435f58437e795ac11d8041f9d..b2f11574386c3a2b813c39cff51637ab2d5d6a9c 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index d3e410ffd204a677eb09cb18d95a19ee77c83029..03abf8d5684da073396195309eca3bde911e2c0f 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386&test"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386&test"
 sdl = 0
 vnc = 1
 vncunused = 1
index b01e2902396db8ac1b4d6b9955bd6bebfb76ea04..86d1d809c00cc33b0045d24fba2499c5a137541d 100644 (file)
@@ -13,7 +13,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 16fe985946f6e61ad456c653fb295f96492f839f..1cf6fbd33385ac1f5ce112f90882f9b35f620eb1 100644 (file)
@@ -13,7 +13,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index eb118427cc6a98a1d8eb4be671deccdfa011ccbf..bf8c4134c073be921806d264ffb4e4e8f21e732f 100644 (file)
@@ -13,7 +13,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 2f8514d5e487a423d53ed02d16482e81f7c9c6ca..bc7ed271e311cb9fc4a6da43e96e058baea8afbd 100644 (file)
@@ -12,7 +12,7 @@ localtime = 1
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index b744b2184e04e918009dd9a0f428921162b770c0..901f620eff9b05912c3f631ebad0a32591e64e2e 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index f9fce015e05a3f18f2e633b8e4f56a4fd4a529ab..6fc9283a4cdeb73ee4f266181c128304e7b1b33d 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index e5375dfdb6b0bcc79d68cb32adee1eb91d7b811e..6bd4eb4c296c49efb6023abd3a1c4adf6f88ac36 100644 (file)
@@ -13,7 +13,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 94c52d975b58cecb98a8ef2f711b3643215a9a05..62e18c1af30ecb2634fe83b4caca1e23c5632128 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 9193cc8717c2bebe462151cdb2b1716c238ed8b3..0574f97ccc4e95655f82379cd8654c35009874bb 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 9ef60b4bd570080beeab20c6d1c9ce968439def3..839818b2281d721240209b9cc246d27da411b68a 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 60e41ab556df68701e20070197562d55b5d69423..bdbfe30d1c3973932af7dd7bc88b910d40cb7f27 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index d4e0763d15624e618820eb820382a5a185d21fda..3007e96efa8639062e07567326c9e8949c5d47c3 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index efefe109b958ce9e81f2cda2559f604d1040752a..9af628c457929c9bae5c84ae4fcaecad859afc1f 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 224f5274e1b54665cae9c68d80f236f12ef8493e..cbbb30a42e96e83cbfc2278c0488b6430f6296ea 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index e70ab847ecb37e828a5f09935f248a9661c159f1..d2b65b5c2d62fd4a712469ad55b71d0714941dd7 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 9e7acdf0c419dae6a460d140fd5e66b238ead1bf..8d44b053a8f5a61f5f3835f0171926047f847841 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 964beba4fe44ed1eb9d5a779c26cca17c4d7cd60..a6cc4a4cd9a9ec6c2111beb893b06b91ab4a978a 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 501463f54cbf0b6d8b9c15ef485ab0a8cb40ec51..5a71618f83c2804608457dd2b7b2eb9a20ba9d2c 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 660f18e7767180a49e563cc24986ba133bb2cf44..07d49573d01ba96b22bdbf5922a656e2d2decb02 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 90428882cc0562b03a9d427aca4faa100273f294..45364b1a57954767936b848b2ae588877f275554 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index f9fce015e05a3f18f2e633b8e4f56a4fd4a529ab..6fc9283a4cdeb73ee4f266181c128304e7b1b33d 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "restart"
 on_crash = "restart"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 8439961215d63ff4561617d46b1f483a9902bed8..a6045244e55e2735958da65a70cd79be784c66d9 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "destroy"
 on_crash = "destroy"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index e0f00d9bd77a61cdefd1780a0c629b37f2c4e025..c3add42e56286673b714b8e97bdf583388e0eb19 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "destroy"
 on_crash = "destroy"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1
index 188227e18793e1da1860782e9e77a4a1806df308..9c6d3311a8a1160e92189e764774ee845c57f1ef 100644 (file)
@@ -12,7 +12,7 @@ localtime = 0
 on_poweroff = "destroy"
 on_reboot = "destroy"
 on_crash = "destroy"
-device_model = "/usr/lib/xen/bin/qemu-system-i386"
+device_model_override = "/usr/lib/xen/bin/qemu-system-i386"
 sdl = 0
 vnc = 1
 vncunused = 1