mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-23 19:49:43 +00:00
soundhw: move help handling to vl.c
This will allow processing "-audio model=help" even if the backend part of the option is missing. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
bf521c5655
commit
67aaa96ae4
@ -89,23 +89,17 @@ void select_soundhw(const char *optarg)
|
||||
error_setg(&error_fatal, "only one -soundhw option is allowed");
|
||||
}
|
||||
|
||||
if (is_help_option(optarg)) {
|
||||
show_valid_soundhw();
|
||||
exit(0);
|
||||
for (c = soundhw; c->name; ++c) {
|
||||
if (g_str_equal(c->name, optarg)) {
|
||||
selected = c;
|
||||
break;
|
||||
}
|
||||
}
|
||||
else {
|
||||
for (c = soundhw; c->name; ++c) {
|
||||
if (g_str_equal(c->name, optarg)) {
|
||||
selected = c;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (!c->name) {
|
||||
error_report("Unknown sound card name `%s'", optarg);
|
||||
show_valid_soundhw();
|
||||
exit(1);
|
||||
}
|
||||
if (!c->name) {
|
||||
error_report("Unknown sound card name `%s'", optarg);
|
||||
show_valid_soundhw();
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2931,6 +2931,10 @@ void qemu_init(int argc, char **argv, char **envp)
|
||||
audio_parse_option(optarg);
|
||||
break;
|
||||
case QEMU_OPTION_soundhw:
|
||||
if (is_help_option(optarg)) {
|
||||
show_valid_soundhw();
|
||||
exit(0);
|
||||
}
|
||||
select_soundhw (optarg);
|
||||
break;
|
||||
case QEMU_OPTION_h:
|
||||
|
Loading…
Reference in New Issue
Block a user