Add vmt(4) from OpenBSD.

This commit is contained in:
wiz 2011-10-18 09:50:24 +00:00
parent 749d77682d
commit 21103913dd
3 changed files with 65 additions and 3 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: mi,v 1.1348 2011/10/11 19:34:39 christos Exp $
# $NetBSD: mi,v 1.1349 2011/10/18 09:50:24 wiz Exp $
#
# Note: don't delete entries from here - mark them as "obsolete" instead.
#
@ -1788,6 +1788,7 @@
./usr/share/man/cat4/vlan.0 man-sys-catman .cat
./usr/share/man/cat4/vmmon.0 man-sys-catman .cat
./usr/share/man/cat4/vmnet.0 man-sys-catman .cat
./usr/share/man/cat4/vmt.0 man-sys-catman .cat
./usr/share/man/cat4/vnd.0 man-sys-catman .cat
./usr/share/man/cat4/vr.0 man-sys-catman .cat
./usr/share/man/cat4/vte.0 man-sys-catman .cat
@ -4544,6 +4545,7 @@
./usr/share/man/html4/vlan.html man-sys-htmlman html
./usr/share/man/html4/vmmon.html man-sys-htmlman html
./usr/share/man/html4/vmnet.html man-sys-htmlman html
./usr/share/man/html4/vmt.html man-sys-htmlman html
./usr/share/man/html4/vnd.html man-sys-htmlman html
./usr/share/man/html4/vr.html man-sys-htmlman html
./usr/share/man/html4/vte.html man-sys-htmlman html
@ -7235,6 +7237,7 @@
./usr/share/man/man4/vlan.4 man-sys-man .man
./usr/share/man/man4/vmmon.4 man-sys-man .man
./usr/share/man/man4/vmnet.4 man-sys-man .man
./usr/share/man/man4/vmt.4 man-sys-man .man
./usr/share/man/man4/vnd.4 man-sys-man .man
./usr/share/man/man4/vr.4 man-sys-man .man
./usr/share/man/man4/vte.4 man-sys-man .man

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.570 2011/09/29 23:35:48 sjg Exp $
# $NetBSD: Makefile,v 1.571 2011/10/18 09:50:24 wiz Exp $
# @(#)Makefile 8.1 (Berkeley) 6/18/93
MAN= aac.4 ac97.4 acardide.4 aceride.4 acphy.4 \
@ -61,7 +61,7 @@ MAN= aac.4 ac97.4 acardide.4 aceride.4 acphy.4 \
tp.4 tr.4 tra.4 trm.4 tty.4 tun.4 tqphy.4 twa.4 twe.4 txp.4 \
uark.4 ubsec.4 udp.4 uep.4 ug.4 uha.4 uk.4 ukphy.4 unix.4 userconf.4 \
vald.4 veriexec.4 vga.4 vge.4 viaide.4 video.4 virt.4 vlan.4 vmmon.4 \
vmnet.4 vnd.4 vr.4 vte.4 \
vmnet.4 vmt.4 vnd.4 vr.4 vte.4 \
wapbl.4 wb.4 wbsio.4 wd.4 wdc.4 wi.4 wm.4 wpi.4 \
wscons.4 wsdisplay.4 wsfont.4 wskbd.4 wsmouse.4 wsmux.4 \
xbox.4 xge.4 \

59
share/man/man4/vmt.4 Normal file
View File

@ -0,0 +1,59 @@
.\" $NetBSD: vmt.4,v 1.1 2011/10/18 09:50:24 wiz Exp $
.\" $OpenBSD: vmt.4,v 1.4 2010/10/26 05:07:31 jmc Exp $
.\"
.\" Copyright (c) 2008 Marco Peereboom <marco@openbsd.org>
.\" Text was heavily borrowed from the IPMI spec V1.5
.\"
.\" Permission to use, copy, modify, and distribute this software for any
.\" purpose with or without fee is hereby granted, provided that the above
.\" copyright notice and this permission notice appear in all copies.
.\"
.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
.\" ACTION OF CONTRACT, NEGLIGENCE OR TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.Dd October 18, 2011
.Dt VMT 4
.Os
.Sh NAME
.Nm vmt
.Nd VMware Tools driver
.Sh SYNOPSIS
.Cd "vmt0 at mainbus0"
.Sh DESCRIPTION
The
.Nm
driver is a kernel level implementation of VMware Tools.
VMware Tools are intended to provide better support for operating systems
running inside virtual machines.
.Pp
.Nm
handles shutdown and reboot requests from the host by signalling
.Xr init 8
with SIGUSR2 and SIGINT respectively.
.Nm
will log notifications that the guest has been suspended or resumed by the
host.
It also provides access to the host machine's clock as a timedelta sensor.
.Pp
.Nm
reports the guest's hostname and first non-loopback IP address to the host.
.Sh SEE ALSO
.Xr init 8 ,
,\" .Xr sensorsd 8 ,
.Xr sysctl 8
.Sh HISTORY
The
.Nm
driver first appeared in
.Ox 4.4
and was then ported to
.Nx 6.0 .
.Sh AUTHORS
The
.Nm
driver was written by
.An David Gwynne Aq dlg@openbsd.org .