diff options
author | Martin Kelly <mkelly@xevo.com> | 2017-06-23 15:48:32 -0700 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-07-01 09:59:24 +0200 |
commit | d8e895ef7339cc94df2a57ee7f048efa9884e9cf (patch) | |
tree | 1f4dba46bf35ddb73797b7d28e293fdaaf017a22 /meta-oe/recipes-support/open-vm-tools/files | |
parent | b460ac6bcb1cf4ab59df56cd0f5c2c91111199b6 (diff) | |
download | meta-openembedded-d8e895ef7339cc94df2a57ee7f048efa9884e9cf.tar.gz |
open-vm-tools: add new recipe
This recipe is modified from the recipe originally found in the Open-Switch
repository:
https://github.com/open-switch/ops-build
yocto/openswitch/meta-foss-openswitch/recipes-extended/open-vm-tools/open-vm-tools_10.0.5.bb
Commit 9008de2d8e100f3f868c66765742bca9fa98f3f9
Although the original recipe packaging was Apache-licensed, I received
permission from the author (Diego Dompe) to relicense it under the MIT license
for inclusion in meta-openembedded:
https://lists.openswitch.net/pipermail/ops-dev/2017-April/014715.html
https://lists.openswitch.net/pipermail/ops-dev/2017-April/014716.html
Signed-off-by: Martin Kelly <mkelly@xevo.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/open-vm-tools/files')
-rw-r--r-- | meta-oe/recipes-support/open-vm-tools/files/tools.conf | 2 | ||||
-rw-r--r-- | meta-oe/recipes-support/open-vm-tools/files/vmtoolsd.service | 11 |
2 files changed, 13 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/open-vm-tools/files/tools.conf b/meta-oe/recipes-support/open-vm-tools/files/tools.conf new file mode 100644 index 000000000..f6cae70cc --- /dev/null +++ b/meta-oe/recipes-support/open-vm-tools/files/tools.conf | |||
@@ -0,0 +1,2 @@ | |||
1 | [guestinfo] | ||
2 | disable-perf-mon=1 | ||
diff --git a/meta-oe/recipes-support/open-vm-tools/files/vmtoolsd.service b/meta-oe/recipes-support/open-vm-tools/files/vmtoolsd.service new file mode 100644 index 000000000..d30e38055 --- /dev/null +++ b/meta-oe/recipes-support/open-vm-tools/files/vmtoolsd.service | |||
@@ -0,0 +1,11 @@ | |||
1 | [Unit] | ||
2 | Description=Open Virtual Machine Tools (VMware Tools) | ||
3 | ConditionVirtualization=vmware | ||
4 | |||
5 | [Service] | ||
6 | ExecStart=/usr/bin/vmtoolsd | ||
7 | Restart=on-failure | ||
8 | KillSignal=SIGKILL | ||
9 | |||
10 | [Install] | ||
11 | WantedBy=multi-user.target | ||