Merge pull request #1331 from flatcar-linux/vmware-11.3.5-main

Upgrade open-vm-tools in main from 11.3.0 to 11.3.5
This commit is contained in:
Dongsu Park 2021-10-12 10:18:43 +02:00 committed by GitHub
commit b00e903f4a
4 changed files with 11 additions and 27 deletions

View File

@ -1 +1 @@
DIST open-vm-tools-11.3.0-18090558.tar.gz 4243260 BLAKE2B f3404e922f251e6d9699c85906a9da80d6ebfa67f347bb98224faba9985b70a1568ee3907e59d984c1c443281bc506178d2aaeed5e5d0ca952a683907e24aa86 SHA512 36fa4fc309e57f49f1000abe8ca48aaf8bda67cd0ef3fd25ed0dfc12e2dd88e5a2bc8dae69abbadb44b2fa5195802f9925681a452f54916daa268adb20e8c8cd DIST open-vm-tools-11.3.5-18557794.tar.gz 4218935 BLAKE2B 41e3f5877a5074bfb206870d7bdba613a468aa104d6d497dcf16e80b24fcbdd2195fcce370b150ced4665dd19296ff27dc06922d2742a43f5bf70b1b5eea9d48 SHA512 fa31f5615c9c90865ba9122f7fcd0831068d48defee30a5f5c620e744b76ccd5b7cc2de20cea4e37b596f99619ffb7bb47774de04e7c4bea666c7c0b6fa1560e

View File

@ -1,17 +1,17 @@
From a5c17c107ac1e88c664dd26e49bf9eb8635a4462 Mon Sep 17 00:00:00 2001 From d41aae8430eb0148dda9f71f311626bbe779d115 Mon Sep 17 00:00:00 2001
From: Benjamin Gilbert <benjamin.gilbert@coreos.com> From: Benjamin Gilbert <benjamin.gilbert@coreos.com>
Date: Tue, 21 Mar 2017 16:04:30 -0700 Date: Tue, 21 Mar 2017 16:04:30 -0700
Subject: [PATCH] configure: Add options for fuse, hgfs, and udev Subject: [PATCH] configure: Add options for fuse, hgfs, and udev
--- ---
open-vm-tools/configure.ac | 24 +++++++++++++++++++++++- open-vm-tools/configure.ac | 16 +++++++++++++++-
1 file changed, 23 insertions(+), 1 deletion(-) 1 file changed, 15 insertions(+), 1 deletion(-)
diff --git a/open-vm-tools/configure.ac b/open-vm-tools/configure.ac diff --git a/open-vm-tools/configure.ac b/open-vm-tools/configure.ac
index b283ebe8..777b38af 100644 index ab315b84..33839087 100644
--- a/open-vm-tools/configure.ac --- a/open-vm-tools/configure.ac
+++ b/open-vm-tools/configure.ac +++ b/open-vm-tools/configure.ac
@@ -471,6 +471,13 @@ fi @@ -519,6 +519,13 @@ fi
# #
# Check for fuse. # Check for fuse.
# #
@ -25,7 +25,7 @@ index b283ebe8..777b38af 100644
AC_VMW_CHECK_LIB([fuse], AC_VMW_CHECK_LIB([fuse],
[FUSE], [FUSE],
[fuse], [fuse],
@@ -481,6 +488,7 @@ AC_VMW_CHECK_LIB([fuse], @@ -529,6 +536,7 @@ AC_VMW_CHECK_LIB([fuse],
[have_fuse=yes], [have_fuse=yes],
[have_fuse=no; [have_fuse=no;
AC_MSG_WARN([Fuse is missing, vmblock-fuse/vmhgfs-fuse will be disabled.])]) AC_MSG_WARN([Fuse is missing, vmblock-fuse/vmhgfs-fuse will be disabled.])])
@ -33,7 +33,7 @@ index b283ebe8..777b38af 100644
# #
# Check for PAM. # Check for PAM.
@@ -1347,7 +1355,13 @@ if test "$os" = "solaris"; then @@ -1425,7 +1433,13 @@ if test "$os" = "solaris"; then
fi fi
fi fi
@ -48,21 +48,6 @@ index b283ebe8..777b38af 100644
have_udev="yes" have_udev="yes"
AC_ARG_WITH([udev-rules-dir], AC_ARG_WITH([udev-rules-dir],
[AS_HELP_STRING([--with-udev-rules-dir=DIR], [AS_HELP_STRING([--with-udev-rules-dir=DIR],
@@ -1375,6 +1389,14 @@ if test "x$enable_resolutionkms" = "xyes"; then
CPPFLAGS="$CPPFLAGS -DENABLE_RESOLUTIONKMS"
fi
+if test "$buildHgfsmounter" = "yes"; then
+ AC_ARG_ENABLE([hgfs-mounter],
+ [AS_HELP_STRING([--disable-hgfs-mounter],
+ [disables mount.vmhgfs])],
+ [buildHgfsmounter="$enableval"],
+ [])
+fi
+
AM_CONDITIONAL(BUILD_HGFSMOUNTER, test "$buildHgfsmounter" = "yes")
AM_CONDITIONAL(LINUX, test "$os" = "linux")
AM_CONDITIONAL(SOLARIS, test "$os" = "solaris")
-- --
2.17.0 2.26.3

View File

@ -7,7 +7,7 @@ inherit autotools flag-o-matic multilib toolchain-funcs
DESCRIPTION="Opensourced tools for VMware guests" DESCRIPTION="Opensourced tools for VMware guests"
HOMEPAGE="https://github.com/vmware/open-vm-tools" HOMEPAGE="https://github.com/vmware/open-vm-tools"
MY_P="${P}-18090558" MY_P="${P}-18557794"
SRC_URI="https://github.com/vmware/open-vm-tools/releases/download/stable-${PV}/${MY_P}.tar.gz" SRC_URI="https://github.com/vmware/open-vm-tools/releases/download/stable-${PV}/${MY_P}.tar.gz"
LICENSE="LGPL-2.1" LICENSE="LGPL-2.1"
@ -30,7 +30,7 @@ RDEPEND="dnet? ( dev-libs/libdnet )
S="${WORKDIR}/${MY_P}" S="${WORKDIR}/${MY_P}"
PATCHES=( PATCHES=(
"${FILESDIR}/${P}-0001-configure-Add-options-for-fuse-hgfs-and-udev.patch" "${FILESDIR}/${PN}-0001-configure-Add-options-for-fuse-hgfs-and-udev.patch"
) )
src_prepare() { src_prepare() {
@ -73,7 +73,6 @@ src_configure() {
--prefix=/usr/share/oem --prefix=/usr/share/oem
$(use_enable deploypkg) $(use_enable deploypkg)
--disable-docs --disable-docs
--disable-hgfs-mounter
--disable-multimon --disable-multimon
--disable-tests --disable-tests
--without-fuse --without-fuse