From: VMware, Inc <> Date: Sat, 19 Sep 2009 01:57:50 +0000 (-0700) Subject: Updating open-vm-tools version for release 2009.09.18-193784. X-Git-Tag: 2009.09.18-193784 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c9f8135d245e7bc3c61e044b378e7b95d61fe6b7;p=thirdparty%2Fopen-vm-tools.git Updating open-vm-tools version for release 2009.09.18-193784. Signed-off-by: Marcelo Vanzin --- diff --git a/open-vm-tools/ChangeLog b/open-vm-tools/ChangeLog index 410e32371..6c7b7f779 100644 --- a/open-vm-tools/ChangeLog +++ b/open-vm-tools/ChangeLog @@ -1,3 +1,35 @@ +2009.09.18 Marcelo Vanzin + This release tag contains commits up to the following id: + 8bb94fbfbdf65b53b87279cf81529756dba7a2ca + + Other changes not captured in the git logs: + + * Resync with internal dev branch (2009.08.24) + + * hgfsmounter/hgfsmounter.c: allow hgfs users to set ttl to 0 at mount time. + + * lib/guestApp/guestApp.c, lib/include/conf.h, lib/include/netutil.h, + lib/include/procMgr.h, lib/include/system.h, lib/vixTools/vixTools.c, + lib/vmCheck/vmcheck.c: remove (now unused) Netware checks. + + * lib/message/*, modules/freebsd/vmhgfs/Makefile, + modules/linux/vmhgfs/Makefile.*, modules/solaris/vmhgfs/Makefile: remove + unused message transport abstraction. The rpcChannel library is now used to + do RPC abstraction. + + * modules/*/vmmemctl/*: refactor of the vmmemctl module as part of adding + support for Mac OS guests. + + * modules/linux/pvscsi/pvscsi.c: don't clobber RESERVATION_CONFLICT sdstat + up from linux pvscsi driver. + + * modules/linux/shared/*: VMCI changes unrelated to the guest driver. + + * modules/linux/vmhgfs/fsutil.c, modules/linux/vmhgfs/inode.c: fix the case + where two directories refer to the same inode. + + * scripts/linux/*: support older versions of NetworkManager. + 2009-08-24 Marcelo Vanzin * Resync with internal trunk (2009.08.19) diff --git a/open-vm-tools/NEWS b/open-vm-tools/NEWS index 96ffef145..a7ed2eee2 100644 --- a/open-vm-tools/NEWS +++ b/open-vm-tools/NEWS @@ -1,3 +1,10 @@ +open-vm-tools 2009.09.18 changes: + * Mostly bug fixes and minor enhancements. + + * The pvscsi code was re-factored in preparation for upstreaming. The + driver has been sent to the LKML for inclusing in the main Linux tree, + and might be removed from open-vm-tools once it's accepted. + open-vm-tools 2009.08.24 changes: * Remove support for Linux kernels < 2.6.9. diff --git a/open-vm-tools/configure.ac b/open-vm-tools/configure.ac index 89ad95652..2092afb98 100644 --- a/open-vm-tools/configure.ac +++ b/open-vm-tools/configure.ac @@ -35,10 +35,10 @@ ### Initialization ### -TOOLS_VERSION="2009.08.24" +TOOLS_VERSION="2009.09.18" AC_INIT( [open-vm-tools], - [2009.08.24], + [2009.09.18], [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 a14e56b16..24bfa6fe5 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-187411" + "build-193784" #define BUILD_NUMBER_NUMERIC \ - 187411 + 193784 #define BUILD_NUMBER_NUMERIC_STRING \ - "187411" + "193784" #define PRODUCT_BUILD_NUMBER \ - "product-build-653" + "product-build-13805" #define PRODUCT_BUILD_NUMBER_NUMERIC \ - 653 + 13805 #define PRODUCT_BUILD_NUMBER_NUMERIC_STRING \ - "653" + "13805" diff --git a/open-vm-tools/modules/linux/dkms.conf b/open-vm-tools/modules/linux/dkms.conf index d35b0df41..c0b12a3a6 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.08.24 +PACKAGE_VERSION=2009.09.18 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 69b82f589..96c84b0d5 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.08.24." + echo "The script will create an 'open-vm-tools' module with version 2009.09.18." exit 1 fi src=$1 -dst=$2/open-vm-tools-2009.08.24 +dst=$2/open-vm-tools-2009.09.18 SHARED_HEADERS="backdoor_def.h" SHARED_HEADERS="$SHARED_HEADERS backdoor_types.h"