From: VMware, Inc <> Date: Fri, 18 Dec 2009 01:27:55 +0000 (-0800) Subject: Updating open-vm-tools version for release 2009.12.16-217847. X-Git-Tag: 2009.12.16-217847 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=61d3ee2e94de84434ecf1495f3f7a5862d7da129;p=thirdparty%2Fopen-vm-tools.git Updating open-vm-tools version for release 2009.12.16-217847. Signed-off-by: Marcelo Vanzin --- diff --git a/open-vm-tools/ChangeLog b/open-vm-tools/ChangeLog index 7ff5f2ee1..68ad5747b 100644 --- a/open-vm-tools/ChangeLog +++ b/open-vm-tools/ChangeLog @@ -1,3 +1,8 @@ +2009.12.16 Marcelo Vanzin + This release tag contains commits up to the following id: + 0d28106da5684dc31ea52ebb5a2dc6a0af5c1d61 + + 2009.11.16 Marcelo Vanzin This release tag contains commits up to the following id: 6f4cdd0f38be020d722f2393c0b78d7cd13f04d2 diff --git a/open-vm-tools/NEWS b/open-vm-tools/NEWS index dd8a080f7..e62f92158 100644 --- a/open-vm-tools/NEWS +++ b/open-vm-tools/NEWS @@ -1,3 +1,22 @@ +open-vm-tools 2009.12.16 changes: + * Some improvements to vmtoolsd, base libraries and and the plugin + interface. + + * Some library refactoring: use new lock library, changes to support + compilation of some code on ARM. + + * some fixes in configure.ac to try to correctly support newer distros. + + * vsock/vmci improvements. + + * bug fixes in the vmxnet / vmxnet3 drivers, and FreeBSD's vmblock driver. + + * vmxnet3 for Linux is now upstream (as of Linux 2.6.32), and will be + removed from later releases of open-vm-tools. + + * pvscsi will be available upstream starting with Linux 2.6.33 and at that + time will be removed from open-vm-tools. + open-vm-tools 2009.11.16 changes: * Lots of refactoring and cleanup in the code, mainly targeting the definition of a set of public APIs. diff --git a/open-vm-tools/configure.ac b/open-vm-tools/configure.ac index a89f376b6..d01307155 100644 --- a/open-vm-tools/configure.ac +++ b/open-vm-tools/configure.ac @@ -39,10 +39,10 @@ ### Initialization ### -TOOLS_VERSION="2009.11.16" +TOOLS_VERSION="2009.12.16" AC_INIT( [open-vm-tools], - [2009.11.16], + [2009.12.16], [open-vm-tools-devel@lists.sourceforge.net]) # In order to make this configure script auto-detect situations where diff --git a/open-vm-tools/lib/include/buildNumber.h b/open-vm-tools/lib/include/buildNumber.h index 63cf6ebac..8d3c28adb 100644 --- a/open-vm-tools/lib/include/buildNumber.h +++ b/open-vm-tools/lib/include/buildNumber.h @@ -1,12 +1,12 @@ #define BUILD_NUMBER \ - "build-210370" + "build-217847" #define BUILD_NUMBER_NUMERIC \ - 210370 + 217847 #define BUILD_NUMBER_NUMERIC_STRING \ - "210370" + "217847" #define PRODUCT_BUILD_NUMBER \ - "product-build-14854" + "product-build-514" #define PRODUCT_BUILD_NUMBER_NUMERIC \ - 14854 + 514 #define PRODUCT_BUILD_NUMBER_NUMERIC_STRING \ - "14854" + "514" diff --git a/open-vm-tools/modules/linux/dkms.conf b/open-vm-tools/modules/linux/dkms.conf index 01aa1593d..d7236a42c 100644 --- a/open-vm-tools/modules/linux/dkms.conf +++ b/open-vm-tools/modules/linux/dkms.conf @@ -1,5 +1,5 @@ PACKAGE_NAME=open-vm-tools -PACKAGE_VERSION=2009.11.16 +PACKAGE_VERSION=2009.12.16 MAKE_CMD_TMPL="make VM_UNAME=\$kernelver \ MODULEBUILDDIR=$dkms_tree/$PACKAGE_NAME/$PACKAGE_VERSION/build" diff --git a/open-vm-tools/modules/linux/dkms.sh b/open-vm-tools/modules/linux/dkms.sh index e9bad59da..1b016cb10 100644 --- a/open-vm-tools/modules/linux/dkms.sh +++ b/open-vm-tools/modules/linux/dkms.sh @@ -28,12 +28,12 @@ then echo " src: root of unpacked open-vm-tools package" echo " dst: where to create the dkms tree" echo - echo "The script will create an 'open-vm-tools' module with version 2009.11.16." + echo "The script will create an 'open-vm-tools' module with version 2009.12.16." exit 1 fi src=$1 -dst=$2/open-vm-tools-2009.11.16 +dst=$2/open-vm-tools-2009.12.16 SHARED_HEADERS="backdoor_def.h" SHARED_HEADERS="$SHARED_HEADERS backdoor_types.h"