spice: load module when enabled on the cmdline
In case the spice opts are not registered, try loading the spice module. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-id: 20201019075224.14803-10-kraxel@redhat.com
This commit is contained in:
parent
db5732c9cf
commit
9ed345a14e
@ -3705,7 +3705,11 @@ void qemu_init(int argc, char **argv, char **envp)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case QEMU_OPTION_spice:
|
case QEMU_OPTION_spice:
|
||||||
|
olist = qemu_find_opts_err("spice", NULL);
|
||||||
|
if (!olist) {
|
||||||
|
ui_module_load_one("spice-core");
|
||||||
olist = qemu_find_opts("spice");
|
olist = qemu_find_opts("spice");
|
||||||
|
}
|
||||||
if (!olist) {
|
if (!olist) {
|
||||||
error_report("spice support is disabled");
|
error_report("spice support is disabled");
|
||||||
exit(1);
|
exit(1);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user