From: VMware, Inc <> Date: Tue, 24 Aug 2010 19:59:21 +0000 (-0700) Subject: Updating open-vm-tools version for release 2010.08.24-292196. X-Git-Tag: 2010.08.24-292196 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=11fc2c99ac3cebbdf3121a40009d175e3f4de564;p=thirdparty%2Fopen-vm-tools.git Updating open-vm-tools version for release 2010.08.24-292196. Signed-off-by: Marcelo Vanzin --- diff --git a/open-vm-tools/ChangeLog b/open-vm-tools/ChangeLog index 8918760b8..7248d33ec 100644 --- a/open-vm-tools/ChangeLog +++ b/open-vm-tools/ChangeLog @@ -1,3 +1,8 @@ +2010.08.24 Marcelo Vanzin + This release tag contains commits up to the following id: + 94e63742d734b41638d37580602de4232da5ece6 + + 2010.07.25 Marcelo Vanzin This release tag contains commits up to the following id: b15cffc7961b97129d0b77643db42b4d4d8e3da7 diff --git a/open-vm-tools/NEWS b/open-vm-tools/NEWS index e4348a7fe..e288c0156 100644 --- a/open-vm-tools/NEWS +++ b/open-vm-tools/NEWS @@ -1,3 +1,15 @@ +open-vm-tools 2010.08.24 changes: + * HGFS and VMCI kernel module bug fixes, and updates to compile + in newer Linux kernels. + + * HGFS server interface refactoring was finished, now supports + the transport abstraction available for the kernel interface. + + * VIX operations are now properly implemented on Solaris, plus + new operations added to support features under development. + + * Other minor cleanups and bug fixes. + open-vm-tools 2010.07.25 changes: * Features previously provided by vmware-user are now provided as vmtoolsd plugins. vmware-user has been removed and code that diff --git a/open-vm-tools/configure.ac b/open-vm-tools/configure.ac index 0ed92c9c5..ba1bd2d76 100644 --- a/open-vm-tools/configure.ac +++ b/open-vm-tools/configure.ac @@ -39,10 +39,10 @@ ### Initialization ### -TOOLS_VERSION="2010.07.25" +TOOLS_VERSION="2010.08.24" AC_INIT( [open-vm-tools], - [2010.07.25], + [2010.08.24], [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 1c217871a..e0fa4bb4b 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-280253" + "build-292196" #define BUILD_NUMBER_NUMERIC \ - 280253 + 292196 #define BUILD_NUMBER_NUMERIC_STRING \ - "280253" + "292196" #define PRODUCT_BUILD_NUMBER \ - "product-build-2097" + "product-build-2437" #define PRODUCT_BUILD_NUMBER_NUMERIC \ - 2097 + 2437 #define PRODUCT_BUILD_NUMBER_NUMERIC_STRING \ - "2097" + "2437" diff --git a/open-vm-tools/modules/linux/dkms.conf b/open-vm-tools/modules/linux/dkms.conf index 2511b46d6..58ea3a6b4 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.07.25 +PACKAGE_VERSION=2010.08.24 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 7987ada32..414d5cc24 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.07.25." + echo "The script will create an 'open-vm-tools' module with version 2010.08.24." exit 1 fi src=$1 -dst=$2/open-vm-tools-2010.07.25 +dst=$2/open-vm-tools-2010.08.24 SHARED_HEADERS="backdoor_def.h" SHARED_HEADERS="$SHARED_HEADERS backdoor_types.h"