diff options
author | 2006-03-29 14:10:51 +0000 | |
---|---|---|
committer | 2006-03-29 14:10:51 +0000 | |
commit | ba9fb1e65f74c6571bc861600509bf1997a43811 (patch) | |
tree | 67bab6b9211e9f4bfd7d2cbe38511d8e5e33d9bc | |
parent | typo; from Alf Schlichting (diff) | |
download | wireguard-openbsd-ba9fb1e65f74c6571bc861600509bf1997a43811.tar.xz wireguard-openbsd-ba9fb1e65f74c6571bc861600509bf1997a43811.zip |
Recognise it(4) at port 0xd00 as well. This is where ASUS seem
to be putting it on all their recent boards.
"put this in" grange@
-rw-r--r-- | share/man/man4/it.4 | 3 | ||||
-rw-r--r-- | sys/arch/amd64/conf/GENERIC | 6 | ||||
-rw-r--r-- | sys/arch/i386/conf/GENERIC | 3 |
3 files changed, 8 insertions, 4 deletions
diff --git a/share/man/man4/it.4 b/share/man/man4/it.4 index 2d9a97287bb..26a65df76cc 100644 --- a/share/man/man4/it.4 +++ b/share/man/man4/it.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: it.4,v 1.6 2005/12/28 15:28:59 grange Exp $ +.\" $OpenBSD: it.4,v 1.7 2006/03/29 14:10:51 jsg Exp $ .\" .\" Copyright (c) 2003 Julien Bordet <zejames@greygats.org> .\" All rights reserved. @@ -32,6 +32,7 @@ .Sh SYNOPSIS .Cd "it0 at isa? port 0x290" .Cd "it1 at isa? port 0xc00" +.Cd "it2 at isa? port 0xd00" .Sh DESCRIPTION The .Nm diff --git a/sys/arch/amd64/conf/GENERIC b/sys/arch/amd64/conf/GENERIC index a3203b55862..4960fd42d80 100644 --- a/sys/arch/amd64/conf/GENERIC +++ b/sys/arch/amd64/conf/GENERIC @@ -1,4 +1,4 @@ -# $OpenBSD: GENERIC,v 1.120 2006/03/29 01:49:52 jsg Exp $ +# $OpenBSD: GENERIC,v 1.121 2006/03/29 14:10:51 jsg Exp $ # # For further information on compiling OpenBSD kernels, see the config(8) # man page. @@ -70,7 +70,9 @@ lm0 at isa? port 0x290 #lm2 at isa? port 0x310 it0 at isa? port 0x290 # IT8705F, IT8712F and SiS970 hardware - # monitors +it1 at isa? port 0xc00 # monitors +it2 at isa? port 0xd00 + viaenv* at pci? # VIA VT82C686A hardware monitor #viasio* at isa? port 0x2e flags 0x0000 # VIA VT1211 LPC Super I/O #viasio* at isa? port 0x4e flags 0x0000 diff --git a/sys/arch/i386/conf/GENERIC b/sys/arch/i386/conf/GENERIC index 3d84d229cd8..b38eff6b574 100644 --- a/sys/arch/i386/conf/GENERIC +++ b/sys/arch/i386/conf/GENERIC @@ -1,4 +1,4 @@ -# $OpenBSD: GENERIC,v 1.478 2006/03/26 20:19:53 grange Exp $ +# $OpenBSD: GENERIC,v 1.479 2006/03/29 14:10:52 jsg Exp $ # # For further information on compiling OpenBSD kernels, see the config(8) # man page. @@ -118,6 +118,7 @@ iic* at amdpm? it0 at isa? port 0x290 # IT8705F, IT8712F and SiS970 hardware it1 at isa? port 0xc00 # monitors +it2 at isa? port 0xd00 viaenv* at pci? # VIA VT82C686A hardware monitor viasio* at isa? port 0x2e flags 0x0000 # VIA VT1211 LPC Super I/O viasio* at isa? port 0x4e flags 0x0000 |