mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-15 08:01:31 +00:00
16 lines
165 B
Bash
16 lines
165 B
Bash
|
#! /bin/sh
|
||
|
|
||
|
. $(dirname $0)/qemu-lib.sh
|
||
|
|
||
|
case $* in
|
||
|
"-M ?")
|
||
|
faked_machine
|
||
|
;;
|
||
|
"-cpu ?")
|
||
|
faked_cpu | grep -Fv '['
|
||
|
;;
|
||
|
*)
|
||
|
real_qemu "$@"
|
||
|
;;
|
||
|
esac
|