mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 07:13:54 -06:00
net: add -netdev option
Patchworks-ID: 35506 Signed-off-by: Mark McLoughlin <markmc@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
7f161aaea6
commit
a1ea458fdf
4 changed files with 29 additions and 0 deletions
|
@ -152,6 +152,18 @@ QemuOptsList qemu_device_opts = {
|
|||
},
|
||||
};
|
||||
|
||||
QemuOptsList qemu_netdev_opts = {
|
||||
.name = "netdev",
|
||||
.head = QTAILQ_HEAD_INITIALIZER(qemu_netdev_opts.head),
|
||||
.desc = {
|
||||
/*
|
||||
* no elements => accept any params
|
||||
* validation will happen later
|
||||
*/
|
||||
{ /* end of list */ }
|
||||
},
|
||||
};
|
||||
|
||||
QemuOptsList qemu_net_opts = {
|
||||
.name = "net",
|
||||
.head = QTAILQ_HEAD_INITIALIZER(qemu_net_opts.head),
|
||||
|
@ -188,6 +200,7 @@ static QemuOptsList *lists[] = {
|
|||
&qemu_drive_opts,
|
||||
&qemu_chardev_opts,
|
||||
&qemu_device_opts,
|
||||
&qemu_netdev_opts,
|
||||
&qemu_net_opts,
|
||||
&qemu_rtc_opts,
|
||||
NULL,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue