mirror of
https://github.com/GNS3/gns3-server
synced 2024-12-26 00:38:10 +00:00
Fix "-machine accel=tcg" check
This commit is contained in:
parent
c5c95979c2
commit
3ae7783360
@ -139,7 +139,7 @@ async def start_qemu_node(node: QemuVM = Depends(dep_node)) -> None:
|
||||
|
||||
qemu_manager = Qemu.instance()
|
||||
hardware_accel = qemu_manager.config.settings.Qemu.enable_hardware_acceleration
|
||||
if hardware_accel and "-no-kvm" not in node.options and "-no-hax" not in node.options:
|
||||
if hardware_accel and "-machine accel=tcg" not in node.options:
|
||||
pm = ProjectManager.instance()
|
||||
if pm.check_hardware_virtualization(node) is False:
|
||||
pass # FIXME: check this
|
||||
|
Loading…
Reference in New Issue
Block a user