From: VMware, Inc <> Date: Wed, 26 Dec 2012 21:19:07 +0000 (-0800) Subject: OVT: stop building vmsync driver on kernels above 3.0.0 X-Git-Tag: 2012.12.26-958366~32 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6ee511737ec2c74223bcaf61ea22af65b38d8813;p=thirdparty%2Fopen-vm-tools.git OVT: stop building vmsync driver on kernels above 3.0.0 On newer kernels vmbackup plugin will use FIFREEZE/FITHAW ioctls to quiesce filesystems so vmsync is not needed and given that it does not even build on 3.6 it is easier to simply disable it. Signed-off-by: Dmitry Torokhov --- diff --git a/open-vm-tools/configure.ac b/open-vm-tools/configure.ac index 6255a17ae..559760d7a 100644 --- a/open-vm-tools/configure.ac +++ b/open-vm-tools/configure.ac @@ -942,8 +942,11 @@ if test "$os" = "linux"; then LIBVMTOOLS_LIBADD="$LIBVMTOOLS_LIBADD -lrt" - MODULES="$MODULES vmsync vmci vsock" + MODULES="$MODULES vmci vsock" MODULES="$MODULES vmxnet vmblock vmhgfs" + if test "$osVersion" -lt 300000; then + MODULES="$MODULES vmsync" + fi buildHgfsmounter=yes fi