diff options
author | Mark McLoughlin <markmc@redhat.com> | 2009-10-08 19:58:26 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-15 09:32:01 -0500 |
commit | a1ea458fdf4711b5d3b23e987b47366d6a3b5924 (patch) | |
tree | 690cbab2a001140a21065c12e175d52067040ef7 /vl.c | |
parent | 7f161aaea6e1f566a017f87513924d1c8bbfdc6c (diff) |
net: add -netdev option
Patchworks-ID: 35506
Signed-off-by: Mark McLoughlin <markmc@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'vl.c')
-rw-r--r-- | vl.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -5087,6 +5087,11 @@ int main(int argc, char **argv, char **envp) fd_bootchk = 0; break; #endif + case QEMU_OPTION_netdev: + if (net_client_parse(&qemu_netdev_opts, optarg) == -1) { + exit(1); + } + break; case QEMU_OPTION_net: if (net_client_parse(&qemu_net_opts, optarg) == -1) { exit(1); |