]> rtime.felk.cvut.cz Git - lisovros/qemu_apohw.git/commit
vl.c: Fix broken -usb option
authorPeter Maydell <peter.maydell@linaro.org>
Thu, 22 Nov 2012 16:48:45 +0000 (16:48 +0000)
committerAnthony Liguori <aliguori@us.ibm.com>
Mon, 26 Nov 2012 19:53:52 +0000 (13:53 -0600)
commitfa5358c69d090d13f762f545d39c5e03124dfdd8
tree827a8235637617fe39bc4400ca09168fcda8c625
parent339c2708e7a0d91e926c473314d563354a949c7f
vl.c: Fix broken -usb option

Commit 094b287f0b accidentally broke the "-usb" command line
option, so it would have no effect if the user had not specified
any machine options at that point. (the return value from
'qemu_opts_find(qemu_find_opts("machine"), 0);' is NULL if there
are no user specified options, so it is only to be used for
looking up an option, not when trying to set one.) Similarly,
would '-usbdevice' no longer cause USB to default to enabled.

Fix this regression by using the same style of code for forcing
the usb=on machine option that we use for other aliases such as
'-enable-kvm'.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
vl.c