mirror of https://github.com/xqemu/xqemu.git
qdev: Add rudimentary help for property value
This provides the same information as reverted commit 2ba6edf0
. Not
much, just better than nothing.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
40ea285c14
commit
117f8eb81d
|
@ -179,7 +179,7 @@ int qdev_device_help(QemuOpts *opts)
|
||||||
}
|
}
|
||||||
|
|
||||||
for (prop = info->props; prop && prop->name; prop++) {
|
for (prop = info->props; prop && prop->name; prop++) {
|
||||||
qemu_error("%s.%s\n", info->name, prop->name);
|
qemu_error("%s.%s=%s\n", info->name, prop->name, prop->info->name);
|
||||||
}
|
}
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue