Deleted Added
full compact
NOTES (177651) NOTES (179315)
1#
2# NOTES -- Lines that can be cut/pasted into kernel and hints configs.
3#
4# This file contains machine dependent kernel configuration notes. For
5# machine independent notes, look in /sys/conf/NOTES.
6#
1#
2# NOTES -- Lines that can be cut/pasted into kernel and hints configs.
3#
4# This file contains machine dependent kernel configuration notes. For
5# machine independent notes, look in /sys/conf/NOTES.
6#
7# $FreeBSD: head/sys/pc98/conf/NOTES 177651 2008-03-26 22:12:00Z phk $
7# $FreeBSD: head/sys/pc98/conf/NOTES 179315 2008-05-26 10:40:09Z bz $
8#
9
10#
11# We want LINT to cover profiling as well.
12profile 2
13
14
15#####################################################################

--- 479 unchanged lines hidden (view full) ---

495# apm under `Miscellaneous hardware'
496# above.
497
498# For older notebooks that signal a powerfail condition (external
499# power supply dropped, or battery state low) by issuing an NMI:
500
501options POWERFAIL_NMI # make it beep instead of panicing
502
8#
9
10#
11# We want LINT to cover profiling as well.
12profile 2
13
14
15#####################################################################

--- 479 unchanged lines hidden (view full) ---

495# apm under `Miscellaneous hardware'
496# above.
497
498# For older notebooks that signal a powerfail condition (external
499# power supply dropped, or battery state low) by issuing an NMI:
500
501options POWERFAIL_NMI # make it beep instead of panicing
502
503#---------------------------------------------------------------------------
504# ISDN4BSD
505#
503#
506# See /usr/share/examples/isdn/ROADMAP for an introduction to isdn4bsd.
507#
508# i4b passive ISDN cards support contains the following hardware drivers:
509#
510# isic - Siemens/Infineon ISDN ISAC/HSCX/IPAC chipset driver
511# iwic - Winbond W6692 PCI bus ISDN S/T interface controller
512# ifpi - AVM Fritz!Card PCI driver
513# ifpi2 - AVM Fritz!Card PCI version 2 driver
514# ihfc - Cologne Chip HFC ISA/ISA-PnP chipset driver
515# ifpnp - AVM Fritz!Card PnP driver
516# itjc - Siemens ISAC / TJNet Tiger300/320 chipset
517#
518# i4b active ISDN cards support contains the following hardware drivers:
519#
520# iavc - AVM B1 PCI, AVM B1 ISA, AVM T1
521#
522# Note that the ``options'' (if given) and ``device'' lines must BOTH
523# be uncommented to enable support for a given card !
524#
525# In addition to a hardware driver (and probably an option) the mandatory
526# ISDN protocol stack devices and the mandatory support device must be
527# enabled as well as one or more devices from the optional devices section.
528#
529#---------------------------------------------------------------------------
530# isic driver (Siemens/Infineon chipsets)
531#
532device isic
533#
534# PCI bus Cards:
535# --------------
536#
537# ELSA MicroLink ISDN/PCI (same as ELSA QuickStep 1000pro PCI)
538options ELSA_QS1PCI
539#
540#---------------------------------------------------------------------------
541# ifpnp driver for AVM Fritz!Card PnP
542#
543# AVM Fritz!Card PnP
544device ifpnp
545#
546#---------------------------------------------------------------------------
547# ihfc driver for Cologne Chip ISA chipsets (experimental!)
548#
549# Teles 16.3c ISA PnP
550# AcerISDN P10 ISA PnP
551# TELEINT ISDN SPEED No.1
552device ihfc
553#
554#---------------------------------------------------------------------------
555# ifpi driver for AVM Fritz!Card PCI
556#
557# AVM Fritz!Card PCI
558device ifpi
559#
560#---------------------------------------------------------------------------
561# ifpi2 driver for AVM Fritz!Card PCI version 2
562#
563# AVM Fritz!Card PCI version 2
564device ifpi2
565#
566#---------------------------------------------------------------------------
567# iwic driver for Winbond W6692 chipset
568#
569# ASUSCOM P-IN100-ST-D (and other Winbond W6692 based cards)
570device iwic
571#
572#---------------------------------------------------------------------------
573# itjc driver for Siemens ISAC / TJNet Tiger300/320 chipset
574#
575# Traverse Technologies NETjet-S
576# Teles PCI-TJ
577device itjc
578#
579#---------------------------------------------------------------------------
580# iavc driver (AVM active cards, needs i4bcapi driver!)
581#
582device iavc
583#
584#---------------------------------------------------------------------------
585# ISDN Protocol Stack - mandatory for all hardware drivers
586#
587# Q.921 / layer 2 - i4b passive cards D channel handling
588device i4bq921
589#
590# Q.931 / layer 3 - i4b passive cards D channel handling
591device i4bq931
592#
593# layer 4 - i4b common passive and active card handling
594device i4b
595#
596#---------------------------------------------------------------------------
597# ISDN devices - mandatory for all hardware drivers
598#
599# userland driver to do ISDN tracing (for passive cards only)
600device i4btrc
601options NI4BTRC=4
602#
603# userland driver to control the whole thing
604device i4bctl
605#
606#---------------------------------------------------------------------------
607# ISDN devices - optional
608#
609# userland driver for access to raw B channel
610device i4brbch
611options NI4BRBCH=4
612#
613# userland driver for telephony
614device i4btel
615options NI4BTEL=2
616#
617#XXXBZ# IPR and ISPPP are not usable until I4B is locked.
618# network driver for IP over raw HDLC ISDN
619#XXXBZ#device i4bipr
620#XXXBZ#options NI4BIPR=4
621# enable VJ header compression detection for ipr i/f
622#XXXBZ#options IPR_VJ
623# enable logging of the first n IP packets to isdnd (n=32 here)
624#XXXBZ#options IPR_LOG=32
625#
626# network driver for sync PPP over ISDN; requires an equivalent
627# number of sppp device to be configured
628#XXXBZ#device i4bisppp
629#XXXBZ#options NI4BISPPP=4
630#
631# B-channel interface to the netgraph subsystem
632#XXXBZ#device i4bing
633#XXXBZ#options NI4BING=2
634#
635# CAPI driver needed for active ISDN cards (see iavc driver above)
636device i4bcapi
637#
638#---------------------------------------------------------------------------
639
640#
641# Set the number of PV entries per process. Increasing this can
642# stop panics related to heavy use of shared memory. However, that can
643# (combined with large amounts of physical memory) cause panics at
644# boot time due the kernel running out of VM space.
645#
646# If you're tweaking this, you might also want to increase the sysctls
647# "vm.v_free_min", "vm.v_free_reserved", and "vm.v_free_target".
648#

--- 85 unchanged lines hidden (view full) ---

734# Note that documenting these are not considered an affront.
735
736options FB_INSTALL_CDEV # install a CDEV entry in /dev
737
738# PECOFF module (Win32 Execution Format)
739options PECOFF_SUPPORT
740options PECOFF_DEBUG
741
504# Set the number of PV entries per process. Increasing this can
505# stop panics related to heavy use of shared memory. However, that can
506# (combined with large amounts of physical memory) cause panics at
507# boot time due the kernel running out of VM space.
508#
509# If you're tweaking this, you might also want to increase the sysctls
510# "vm.v_free_min", "vm.v_free_reserved", and "vm.v_free_target".
511#

--- 85 unchanged lines hidden (view full) ---

597# Note that documenting these are not considered an affront.
598
599options FB_INSTALL_CDEV # install a CDEV entry in /dev
600
601# PECOFF module (Win32 Execution Format)
602options PECOFF_SUPPORT
603options PECOFF_DEBUG
604
742options I4B_SMP_WORKAROUND
743options I586_PMC_GUPROF=0x70000
744options KBDIO_DEBUG=2
745options KBD_MAXRETRY=4
746options KBD_MAXWAIT=6
747options KBD_RESETDELAY=201
748
749options TIMER_FREQ=((14318182+6)/12)
750

--- 53 unchanged lines hidden ---
605options I586_PMC_GUPROF=0x70000
606options KBDIO_DEBUG=2
607options KBD_MAXRETRY=4
608options KBD_MAXWAIT=6
609options KBD_RESETDELAY=201
610
611options TIMER_FREQ=((14318182+6)/12)
612

--- 53 unchanged lines hidden ---