diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2006-10-27 21:52:09 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2006-10-27 21:52:09 +0000 |
commit | 88c0cb88d39f0f4fe5172151a7120a21f9d443c2 (patch) | |
tree | 5ceee0101fd07465b9aa4982d6fe41e1232a50c2 /share/man | |
parent | b3931be144d501db032230ae699f3250c39cdeaf (diff) |
mainbus stub; help/ok miod
Diffstat (limited to 'share/man')
-rw-r--r-- | share/man/man4/Makefile | 4 | ||||
-rw-r--r-- | share/man/man4/mainbus.4 | 36 |
2 files changed, 38 insertions, 2 deletions
diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile index f1a47d07a91..34906ff5eb2 100644 --- a/share/man/man4/Makefile +++ b/share/man/man4/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.389 2006/10/27 17:10:48 jmc Exp $ +# $OpenBSD: Makefile,v 1.390 2006/10/27 21:52:08 jmc Exp $ MAN= aac.4 ac97.4 acphy.4 acpi.4 acx.4 \ adc.4 addcom.4 admcts.4 admlc.4 admtemp.4 \ @@ -24,7 +24,7 @@ MAN= aac.4 ac97.4 acphy.4 acpi.4 acx.4 \ isa.4 isagpio.4 isapnp.4 \ ises.4 isp.4 it.4 iwi.4 ixgb.4 ksyms.4 kue.4 lc.4 lge.4 lkm.4 lm.4 \ lmc.4 lmenv.4 lmtemp.4 lo.4 lofn.4 lpt.4 lxtphy.4 luphy.4 \ - maestro.4 malo.4 maxds.4 maxtmp.4 midi.4 mii.4 mfi.4 \ + maestro.4 mainbus.4 malo.4 maxds.4 maxtmp.4 midi.4 mii.4 mfi.4 \ moscom.4 mpi.4 mpu.4 mtd.4 mtdphy.4 multicast.4 mtio.4 ne.4 \ neo.4 netintro.4 nfe.4 nge.4 nmea.4 noct.4 nofn.4 nsclpcsio.4 \ nsgphy.4 nsphy.4 nsphyter.4 null.4 nviic.4 ohci.4 opl.4 options.4 \ diff --git a/share/man/man4/mainbus.4 b/share/man/man4/mainbus.4 new file mode 100644 index 00000000000..03099d41e5f --- /dev/null +++ b/share/man/man4/mainbus.4 @@ -0,0 +1,36 @@ +.\" $OpenBSD: mainbus.4,v 1.1 2006/10/27 21:52:08 jmc Exp $ +.\" +.\" Copyright (c) 2006 Jason McIntyre <jmc@openbsd.org> +.\" +.\" 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 OTHER TORTIOUS ACTION, ARISING OUT OF +.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +.\" +.Dd October 27, 2006 +.Dt MAINBUS 4 +.Os +.Sh NAME +.Nm mainbus +.Nd device tree root +.Sh SYNOPSIS +.Cd "mainbus0 at root" +.Sh DESCRIPTION +.Nm +provides an abstraction for all system buses to attach to. +It is the start of the device tree and always attached. +It is not a physical device as such, +but an abstraction to which other devices may attach. +.Pp +The actual buses which attach are largely machine-dependent; +refer to the individual man pages for more information. +.Sh SEE ALSO +.Xr autoconf 4 , +.Xr intro 4 |