Skip to content

Commit fbba7ac

Browse files
Use singleton usbdevice_list instead of usbdevice
This is a workaround since the default value of [] for usbdevice_list is interpreted as a specified option in libxl and libxl disallows specifying both the usbdevice and usbdevice_list options. Signed-off-by: Si Beaumont <[email protected]>
1 parent b75eb5d commit fbba7ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xl/xenops_server_xenlight.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1969,7 +1969,7 @@ module VM = struct
19691969
serial = hvm_info.Xenops_interface.Vm.serial;
19701970
boot = Some hvm_info.Xenops_interface.Vm.boot_order;
19711971
usb = Some true;
1972-
usbdevice = Some "tablet";
1972+
usbdevice_list = [ "tablet" ];
19731973
}
19741974
}
19751975
| PV { Xenops_interface.Vm.boot = Direct direct } ->

0 commit comments

Comments
 (0)