diff options
author | nate <nate@FreeBSD.org> | 1996-04-22 19:40:28 +0000 |
---|---|---|
committer | nate <nate@FreeBSD.org> | 1996-04-22 19:40:28 +0000 |
commit | 32d5c84b4c82fbdb2b186700c50a4df928af77f7 (patch) | |
tree | 741690a9594b4c514b3873326f1166df1f184550 /sys/amd64/conf | |
parent | 791bb4af0afd9a27ef286b6bed0bf5f610e849b4 (diff) | |
download | FreeBSD-src-32d5c84b4c82fbdb2b186700c50a4df928af77f7.zip FreeBSD-src-32d5c84b4c82fbdb2b186700c50a4df928af77f7.tar.gz |
- add apm to the GENERIC kernel (disabled by default), and add some comments
regarding apm to LINT
- Disabled the statistics clock on machines which have an APM BIOS and
have the options "APM_BROKEN_STATCLOCK" enabled (which is default
in GENERIC now)
- move around some of the code in clock.c dealing with the rtc to make
it more obvios the effects of disabling the statistics clock
Reviewed by: bde
Diffstat (limited to 'sys/amd64/conf')
-rw-r--r-- | sys/amd64/conf/GENERIC | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/amd64/conf/GENERIC b/sys/amd64/conf/GENERIC index 350cdd7..7239d91 100644 --- a/sys/amd64/conf/GENERIC +++ b/sys/amd64/conf/GENERIC @@ -1,7 +1,7 @@ # # GENERIC -- Generic machine with WD/AHx/NCR/BTx family disks # -# $Id: GENERIC,v 1.65 1996/04/10 23:03:36 jkh Exp $ +# $Id: GENERIC,v 1.66 1996/04/18 04:02:30 nate Exp $ # machine "i386" @@ -92,6 +92,12 @@ device sc0 at isa? port "IO_KBD" tty irq 1 vector scintr # Mandatory, don't remove device npx0 at isa? port "IO_NPX" irq 13 vector npxintr +# +# Laptop support (see LINT for more options) +# +device apm0 at isa? disable # Advanced Power Management +options APM_BROKEN_STATCLOCK # Workaround some buggy APM BIOS + device sio0 at isa? port "IO_COM1" tty irq 4 vector siointr device sio1 at isa? port "IO_COM2" tty irq 3 vector siointr device sio2 at isa? port "IO_COM3" tty irq 5 vector siointr |