summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2008-07-08 13:41:21 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2008-07-08 13:41:21 +0000
commitfb81790dae641d1e61107add3c97f9addbb93edc (patch)
tree90dadf5babf608797b47b0497ce9fae0ded8c291 /share
parent3f549a4e976dfedba4cd1cebcb8bb1708f54b55d (diff)
basic manpage for vmt(4)
Diffstat (limited to 'share')
-rw-r--r--share/man/man4/Makefile9
-rw-r--r--share/man/man4/vmt.446
2 files changed, 51 insertions, 4 deletions
diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile
index f8b04245b22..bdb0f8448c8 100644
--- a/share/man/man4/Makefile
+++ b/share/man/man4/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.459 2008/06/28 16:03:08 mglocker Exp $
+# $OpenBSD: Makefile,v 1.460 2008/07/08 13:41:20 dlg Exp $
MAN= aac.4 ac97.4 acphy.4 \
acpi.4 acpiac.4 acpiasus.4 acpibat.4 acpibtn.4 acpicpu.4 acpidock.4 \
@@ -55,9 +55,10 @@ MAN= aac.4 ac97.4 acphy.4 \
unix.4 uow.4 upgt.4 upl.4 uplcom.4 ural.4 urio.4 url.4 urlphy.4 usb.4 \
usbf.4 uscanner.4 uslcom.4 usscanner.4 uticom.4 uts.4 uvideo.4 uvisor.4 \
uvscom.4 uyap.4 vga.4 vgafb.4 vge.4 viaenv.4 viapm.4 viasio.4 vic.4 \
- video.4 vlan.4 vnd.4 vr.4 watchdog.4 wb.4 wbenv.4 wbng.4 wbsio.4 wd.4 \
- wdc.4 we.4 wi.4tbl wpi.4 wscons.4 wsdisplay.4 wskbd.4 wsmouse.4 \
- wsmux.4 xe.4 xf86.4 xge.4 xl.4 xmphy.4 yds.4 ym.4 zero.4 zyd.4
+ video.4 vlan.4 vmt.4 vnd.4 vr.4 watchdog.4 wb.4 wbenv.4 wbng.4 \
+ wbsio.4 wd.4 wdc.4 we.4 wi.4tbl wpi.4 wscons.4 wsdisplay.4 wskbd.4 \
+ wsmouse.4 wsmux.4 xe.4 xf86.4 xge.4 xl.4 xmphy.4 yds.4 ym.4 zero.4 \
+ zyd.4
MLINKS+=adv.4 advansys.4 adv.4 adw.4
MLINKS+=art.4 musycc.4
diff --git a/share/man/man4/vmt.4 b/share/man/man4/vmt.4
new file mode 100644
index 00000000000..af274413c60
--- /dev/null
+++ b/share/man/man4/vmt.4
@@ -0,0 +1,46 @@
+.\" $OpenBSD: vmt.4,v 1.1 2008/07/08 13:41:20 dlg 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
+.\" TORTIOUS ACTION, ARISING OUT OF
+.\" PERFORMANCE OF THIS SOFTWARE.
+.Dd $Mdocdate: July 8 2008 $
+.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
+provides access to the host machines clock as a timedelta sensor.
+.Sh SEE ALSO
+.Xr sensorsd 8 ,
+.Xr sysctl 8
+.Sh HISTORY
+The
+.Nm
+driver first appeared in
+.Ox 4.4 .
+.Sh AUTHORS
+The
+.Nm
+driver was written by
+.An David Gwynne Aq dlg@openbsd.org .