From: VMware, Inc <> Date: Mon, 22 Mar 2010 22:37:59 +0000 (-0700) Subject: Updating open-vm-tools version for release 2010.03.20-243334. X-Git-Tag: 2010.03.20-243334 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=355495ca58d2280a2ecb27be73aea0aa4c80e8b2;p=thirdparty%2Fopen-vm-tools.git Updating open-vm-tools version for release 2010.03.20-243334. Signed-off-by: Marcelo Vanzin --- diff --git a/open-vm-tools/ChangeLog b/open-vm-tools/ChangeLog index cbb62c03e..44934f0a0 100644 --- a/open-vm-tools/ChangeLog +++ b/open-vm-tools/ChangeLog @@ -1,3 +1,8 @@ +2010.03.20 Marcelo Vanzin + This release tag contains commits up to the following id: + 7cdbb623125729b41bf54068568dfbcc2dd58733 + + 2010.02.23 Marcelo Vanzin This release tag contains commits up to the following id: 8baa8588d5fd4cf64efb17164cb70c86c758d0c6 diff --git a/open-vm-tools/NEWS b/open-vm-tools/NEWS index 8e9681196..19e3de19b 100644 --- a/open-vm-tools/NEWS +++ b/open-vm-tools/NEWS @@ -1,3 +1,16 @@ +open-vm-tools 2010.03.20 changes: + * New i18n support for Tools; it is based on VMware's internal tools + (instead of gettext). + + * Logging infrastructure has been enhanced and now supports rotation + (without the need for logrotate) and syslog. + + * Bug fixes in several areas (DnD, backup support, thread safety). + + * Updates in Linux kernel modules for compatibility with newer kernels. + + * New functionality in the Unity support code. + open-vm-tools 2010.02.23 changes: * Mostly bug fixes, cleanups and code refactoring. diff --git a/open-vm-tools/configure.ac b/open-vm-tools/configure.ac index 48db493ff..3383e12fe 100644 --- a/open-vm-tools/configure.ac +++ b/open-vm-tools/configure.ac @@ -39,10 +39,10 @@ ### Initialization ### -TOOLS_VERSION="2010.02.23" +TOOLS_VERSION="2010.03.20" AC_INIT( [open-vm-tools], - [2010.02.23], + [2010.03.20], [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 01fbe4220..1637958e3 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-236320" + "build-243334" #define BUILD_NUMBER_NUMERIC \ - 236320 + 243334 #define BUILD_NUMBER_NUMERIC_STRING \ - "236320" + "243334" #define PRODUCT_BUILD_NUMBER \ - "product-build-1027" + "product-build-1212" #define PRODUCT_BUILD_NUMBER_NUMERIC \ - 1027 + 1212 #define PRODUCT_BUILD_NUMBER_NUMERIC_STRING \ - "1027" + "1212" diff --git a/open-vm-tools/modules/linux/dkms.conf b/open-vm-tools/modules/linux/dkms.conf index f15e96d10..c40345991 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=2010.02.23 +PACKAGE_VERSION=2010.03.20 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 7748e5557..8500b3f77 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 2010.02.23." + echo "The script will create an 'open-vm-tools' module with version 2010.03.20." exit 1 fi src=$1 -dst=$2/open-vm-tools-2010.02.23 +dst=$2/open-vm-tools-2010.03.20 SHARED_HEADERS="backdoor_def.h" SHARED_HEADERS="$SHARED_HEADERS backdoor_types.h"