5
0
mirror of git://git.proxmox.com/git/qemu-server.git synced 2025-01-10 01:18:01 +03:00

allow to run as qemu-system-x86_64

This is usefull to debug.
This commit is contained in:
Dietmar Maurer 2013-01-16 13:19:24 +01:00
parent 907ea89128
commit 06094efd4d

View File

@ -1836,7 +1836,7 @@ sub check_cmdline {
my @param = split(/\0/, $line);
my $cmd = $param[0];
return if !$cmd || ($cmd !~ m|kvm$|);
return if !$cmd || ($cmd !~ m|kvm$| && $cmd !~ m|qemu-system-x86_64$|);
for (my $i = 0; $i < scalar (@param); $i++) {
my $p = $param[$i];