summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorRichard Jones <rjones@redhat.com>2010-08-24 11:53:40 +0100
committerRichard Jones <rjones@redhat.com>2010-08-24 12:37:54 +0100
commit4963be850090933e5769f9d3412d9eb86f522b1b (patch)
treedd764a25ecdef9cb14d68a728afcf618538c5a83 /configure.ac
parent10d1aa3b64f61408bb092d998fb8c5f453a7749c (diff)
downloadlibguestfs-4963be850090933e5769f9d3412d9eb86f522b1b.tar.gz
libguestfs-4963be850090933e5769f9d3412d9eb86f522b1b.tar.xz
libguestfs-4963be850090933e5769f9d3412d9eb86f522b1b.zip
New APIs: set-network and get-network to enable network support.
guestfs_set_network (g, true) enables network support in the appliance.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 0ba41579..62998ba5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -300,14 +300,14 @@ AC_ARG_WITH([drive-if],
AC_DEFINE_UNQUOTED([DRIVE_IF],["$with_drive_if"],[Default drive interface.])
dnl Set interface used by the network. Normally you should
-dnl leave this at the default (virtio) but you can use the
+dnl leave this at the default (virtio-net-pci) but you can use the
dnl alternative (ne2k_pci) because of bugs in virtio networking
dnl eg. https://bugzilla.redhat.com/show_bug.cgi?id=516022
AC_ARG_WITH([net-if],
[AS_HELP_STRING([--with-net-if],
- [set default net driver (virtio|ne2k_pci) @<:@default=virtio@:>@])],
+ [set default net driver (virtio-net-pci|ne2k_pci) @<:@default=virtio-net-pci@:>@])],
[],
- [with_net_if=virtio])
+ [with_net_if=virtio-net-pci])
AC_DEFINE_UNQUOTED([NET_IF],["$with_net_if"],[Default network interface.])
dnl Check for febootstrap etc.