From: VMware, Inc <> Date: Mon, 26 Jul 2010 22:07:53 +0000 (-0700) Subject: Updating open-vm-tools version for release 2010.07.25-280253. X-Git-Tag: 2010.07.25-280253 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1e057064e02856cfa0e69bdfcf5db164bd2ceb2d;p=thirdparty%2Fopen-vm-tools.git Updating open-vm-tools version for release 2010.07.25-280253. Signed-off-by: Marcelo Vanzin --- diff --git a/open-vm-tools/ChangeLog b/open-vm-tools/ChangeLog index e890829a8..8918760b8 100644 --- a/open-vm-tools/ChangeLog +++ b/open-vm-tools/ChangeLog @@ -1,3 +1,8 @@ +2010.07.25 Marcelo Vanzin + This release tag contains commits up to the following id: + b15cffc7961b97129d0b77643db42b4d4d8e3da7 + + 2010.06.16 Marcelo Vanzin This release tag contains commits up to the following id: ec87703fccdd0f954a118640c0b097e383994391 diff --git a/open-vm-tools/NEWS b/open-vm-tools/NEWS index c9aaccddc..e4348a7fe 100644 --- a/open-vm-tools/NEWS +++ b/open-vm-tools/NEWS @@ -1,3 +1,16 @@ +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 + interacted with it changed to start the correct vmtoolsd instance. + + * Lots of cleanup: removed old compatibility headers not needed + anymore, removed dead code, consolidated logging code. + + * Time synchronization now works more like NTP. + + * New code for features not yet exposed by VMware host software + is being added. + open-vm-tools 2010.06.16 changes: * VMCI moves towards unifying the guest and host driver APIs, and gets support for MSI/MSI-X. diff --git a/open-vm-tools/configure.ac b/open-vm-tools/configure.ac index 97a23191a..7a3a06192 100644 --- a/open-vm-tools/configure.ac +++ b/open-vm-tools/configure.ac @@ -39,10 +39,10 @@ ### Initialization ### -TOOLS_VERSION="2010.06.16" +TOOLS_VERSION="2010.07.25" AC_INIT( [open-vm-tools], - [2010.06.16], + [2010.07.25], [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 233770cb7..1c217871a 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-268169" + "build-280253" #define BUILD_NUMBER_NUMERIC \ - 268169 + 280253 #define BUILD_NUMBER_NUMERIC_STRING \ - "268169" + "280253" #define PRODUCT_BUILD_NUMBER \ - "product-build-1828" + "product-build-2097" #define PRODUCT_BUILD_NUMBER_NUMERIC \ - 1828 + 2097 #define PRODUCT_BUILD_NUMBER_NUMERIC_STRING \ - "1828" + "2097" diff --git a/open-vm-tools/modules/linux/dkms.conf b/open-vm-tools/modules/linux/dkms.conf index 30bfc89d6..2511b46d6 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.06.16 +PACKAGE_VERSION=2010.07.25 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 437ca12cf..7987ada32 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.06.16." + echo "The script will create an 'open-vm-tools' module with version 2010.07.25." exit 1 fi src=$1 -dst=$2/open-vm-tools-2010.06.16 +dst=$2/open-vm-tools-2010.07.25 SHARED_HEADERS="backdoor_def.h" SHARED_HEADERS="$SHARED_HEADERS backdoor_types.h"