4a04f6f613
{ port_name = "IO_TIMER", port_number = 1 } and only worked because it was reassembled to "IO_TIMER1". Trailing digits always work, but this is too magic to depend on. Don't quote port names that don't have a digit in them.
115 lines
3.2 KiB
Plaintext
115 lines
3.2 KiB
Plaintext
#
|
|
# PCCARD -- GENERIC laptop support
|
|
#
|
|
# For more information read the handbook part System Administration ->
|
|
# Configuring the FreeBSD Kernel -> The Configuration File.
|
|
# The handbook is available in /usr/share/doc/handbook or online as
|
|
# latest version from the FreeBSD World Wide Web server
|
|
# <URL:http://www.FreeBSD.ORG/>
|
|
#
|
|
# An exhaustive list of options and more detailed explanations of the
|
|
# device lines is present in the ./LINT configuration file. If you are
|
|
# in doubt as to the purpose or necessity of a line, check first in LINT.
|
|
#
|
|
# $Id: PCCARD,v 1.8 1998/10/22 12:23:04 bde Exp $
|
|
|
|
machine "i386"
|
|
cpu "I386_CPU"
|
|
cpu "I486_CPU"
|
|
cpu "I586_CPU"
|
|
cpu "I686_CPU"
|
|
ident PCCARD
|
|
maxusers 10
|
|
|
|
options MATH_EMULATE #Support for x87 emulation
|
|
options INET #InterNETworking
|
|
options FFS #Berkeley Fast Filesystem
|
|
options NFS #Network Filesystem
|
|
options MSDOSFS #MSDOS Filesystem
|
|
options "CD9660" #ISO 9660 Filesystem
|
|
options PROCFS #Process filesystem
|
|
options "COMPAT_43" #Compatible with BSD 4.3 [KEEP THIS!]
|
|
options SCSI_DELAY=15000 #Be pessimistic about Joe SCSI device
|
|
options UCONSOLE #Allow users to grab the console
|
|
options FAILSAFE #Be conservative
|
|
options USERCONFIG #boot -c editor
|
|
options VISUAL_USERCONFIG #visual boot -c editor
|
|
|
|
config kernel root on wd0
|
|
|
|
controller isa0
|
|
controller pci0
|
|
|
|
controller fdc0 at isa? port "IO_FD1" bio irq 6 drq 2
|
|
disk fd0 at fdc0 drive 0
|
|
|
|
options "CMD640" # work around CMD640 chip deficiency
|
|
controller wdc0 at isa? port "IO_WD1" bio irq 14
|
|
disk wd0 at wdc0 drive 0
|
|
|
|
controller wdc1 at isa? port "IO_WD2" bio irq 15
|
|
|
|
options ATAPI #Enable ATAPI support for IDE bus
|
|
options ATAPI_STATIC #Don't do it as an LKM
|
|
device wcd0 #IDE CD-ROM
|
|
|
|
#controller aic0 at isa? port 0x340 cam irq 11
|
|
|
|
#controller scbus0
|
|
|
|
#device da0
|
|
|
|
#device sa0
|
|
|
|
#device cd0 #Only need one of these, the code dynamically grows
|
|
|
|
# syscons is the default console driver, resembling an SCO console
|
|
device sc0 at isa? port IO_KBD tty irq 1
|
|
|
|
device npx0 at isa? port IO_NPX irq 13
|
|
|
|
#
|
|
# Laptop support (see LINT for more options)
|
|
#
|
|
device apm0 at isa? flags 0x31 # Advanced Power Management
|
|
|
|
# PCCARD (PCMCIA) support
|
|
controller card0
|
|
device pcic0 at card?
|
|
device pcic1 at card?
|
|
|
|
options PCIC_RESUME_RESET # reset after resume
|
|
|
|
device sio0 at isa? port "IO_COM1" flags 0x10 tty irq 4
|
|
device sio1 at isa? port "IO_COM2" tty irq 3
|
|
device sio2 at isa? disable port "IO_COM3" tty irq 5
|
|
device sio3 at isa? disable port "IO_COM4" tty irq 9
|
|
|
|
device lpt0 at isa? port? tty irq 7
|
|
|
|
device psm0 at isa? port IO_KBD conflicts tty irq 12
|
|
options PSM_HOOKAPM #hook the APM resume event
|
|
options PSM_RESETAFTERSUSPEND #reset the device at the resume event
|
|
|
|
device ed0 at isa? port 0x280 net irq 10 iomem 0xd8000
|
|
device ep0 at isa? port 0x300 net irq 10
|
|
device fe0 at isa? port 0x300 net irq ?
|
|
|
|
pseudo-device loop
|
|
pseudo-device ether
|
|
pseudo-device sl 1
|
|
# iijppp uses tun instead of ppp device
|
|
#pseudo-device ppp 1
|
|
pseudo-device tun 1
|
|
pseudo-device pty 16
|
|
pseudo-device gzip # Exec gzipped a.out's
|
|
|
|
# KTRACE enables the system-call tracing facility ktrace(2).
|
|
# This adds 4 KB bloat to your kernel, and slightly increases
|
|
# the costs of each syscall.
|
|
options KTRACE #kernel tracing
|
|
|
|
# This provides support for System V shared memory.
|
|
#
|
|
options SYSVSHM
|