diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2005-12-29 14:45:12 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2005-12-29 14:45:12 +0000 |
commit | 28af65ebfe6b2ec4b02b4e156fc4653d14ea6d0a (patch) | |
tree | 26b6045b8bb5ca79f1e2cdda5044eede84f3563e | |
parent | 24362fb628b3e17649e7ad110e9e2718be4b4712 (diff) |
Add viapm(4).
ok deraadt@
-rw-r--r-- | sys/arch/amd64/conf/GENERIC | 5 | ||||
-rw-r--r-- | sys/arch/amd64/conf/files.amd64 | 7 |
2 files changed, 10 insertions, 2 deletions
diff --git a/sys/arch/amd64/conf/GENERIC b/sys/arch/amd64/conf/GENERIC index 3be5bf79347..8b49f2108ae 100644 --- a/sys/arch/amd64/conf/GENERIC +++ b/sys/arch/amd64/conf/GENERIC @@ -1,4 +1,4 @@ -# $OpenBSD: GENERIC,v 1.94 2005/12/16 23:21:17 marco Exp $ +# $OpenBSD: GENERIC,v 1.95 2005/12/29 14:45:11 kettenis Exp $ # # For further information on compiling OpenBSD kernels, see the config(8) # man page. @@ -76,6 +76,9 @@ 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 +viapm* at pci? # VIA VT8237 power management +iic* at viapm? + #option PCMCIAVERBOSE # PCI PCMCIA controllers diff --git a/sys/arch/amd64/conf/files.amd64 b/sys/arch/amd64/conf/files.amd64 index 67be69d7c56..ee7d41bfcaf 100644 --- a/sys/arch/amd64/conf/files.amd64 +++ b/sys/arch/amd64/conf/files.amd64 @@ -1,4 +1,4 @@ -# $OpenBSD: files.amd64,v 1.16 2005/11/07 04:53:15 fgsch Exp $ +# $OpenBSD: files.amd64,v 1.17 2005/12/29 14:45:11 kettenis Exp $ maxpartitions 16 maxusers 2 16 128 @@ -165,6 +165,11 @@ file dev/isa/fd.c fd needs-flag include "dev/usb/files.usb" # +# I2C +# +include "dev/i2c/files.i2c" + +# # ACPI # include "../../../dev/acpi/files.acpi" |