diff options
author | Karoly Kasza <kaszak@gmail.com> | 2015-03-29 18:59:20 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-04-07 22:39:41 +0200 |
commit | 54b6649cf7c84d39568d4e24d0b93ab6416c1075 (patch) | |
tree | 41ca305842b899cc41b86abdddcaaf34663856ca /package/openvmtools/0002-network_script.patch | |
parent | 8ee6d5aa6acb9a1c4ece36ac65a6b92a213d47da (diff) | |
download | buildroot-54b6649cf7c84d39568d4e24d0b93ab6416c1075.tar.gz buildroot-54b6649cf7c84d39568d4e24d0b93ab6416c1075.zip |
package/openvmtools: bump version to 9.10.0
[Thomas:
- add explicit --with-ssl
- remove comment above openssl condition, as it is obvious what is
happening.]
Signed-off-by: Karoly Kasza <kaszak@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/openvmtools/0002-network_script.patch')
-rw-r--r-- | package/openvmtools/0002-network_script.patch | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/package/openvmtools/0002-network_script.patch b/package/openvmtools/0002-network_script.patch deleted file mode 100644 index 67705cc53a..0000000000 --- a/package/openvmtools/0002-network_script.patch +++ /dev/null @@ -1,21 +0,0 @@ -scripts/linux/network: exit normally if no network control script - -When using suspend/resume from the hypervisor, openvmtools checks for the -networking script, and exists with an error if not found, making the hypervisor -raise a warning message. This workaround silences that error message. - -Signed-off-by: Karoly Kasza <kaszak@gmail.com> - ---- open-vm-tools-9.4.6-1770165.orig/scripts/linux/network 2014-07-02 00:21:14.000000000 +0200 -+++ open-vm-tools-9.4.6-1770165/scripts/linux/network 2014-08-07 16:34:21.963514273 +0200 -@@ -88,7 +88,9 @@ - run_network_script() - { - script=`find_networking_script` -- [ "$script" != "error" ] || Panic "Cannot find system networking script." -+# [ "$script" != "error" ] || Panic "Cannot find system networking script." -+# Modified for buildroot -+ [ "$script" != "error" ] || exit 0 - - # Using SysV "service" if it exists, otherwise fall back to run the script directly - service=`which service 2>/dev/null` |