2010-07-13 21:24:08 +00:00
|
|
|
#
|
|
|
|
# GENERIC -- Generic kernel configuration file for FreeBSD/powerpc
|
|
|
|
#
|
|
|
|
# For more information on this file, please read the handbook section on
|
|
|
|
# Kernel Configuration Files:
|
|
|
|
#
|
|
|
|
# http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html
|
|
|
|
#
|
|
|
|
# The handbook is also available locally in /usr/share/doc/handbook
|
|
|
|
# if you've installed the doc distribution, otherwise always see the
|
|
|
|
# FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the
|
|
|
|
# latest information.
|
|
|
|
#
|
|
|
|
# An exhaustive list of options and more detailed explanations of the
|
|
|
|
# device lines is also present in the ../../conf/NOTES and NOTES files.
|
|
|
|
# If you are in doubt as to the purpose or necessity of a line, check first
|
|
|
|
# in NOTES.
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
cpu AIM
|
|
|
|
ident GENERIC
|
|
|
|
|
2012-06-29 19:05:29 +00:00
|
|
|
machine powerpc powerpc64
|
2010-07-13 21:24:08 +00:00
|
|
|
|
|
|
|
makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
2013-08-22 05:07:50 +00:00
|
|
|
makeoptions WITH_CTF=1
|
2010-07-13 21:24:08 +00:00
|
|
|
|
|
|
|
# Platform support
|
|
|
|
options POWERMAC #NewWorld Apple PowerMacs
|
2012-06-29 19:05:29 +00:00
|
|
|
options PS3 #Sony Playstation 3
|
|
|
|
options MAMBO #IBM Mambo Full System Simulator
|
2014-03-18 14:41:18 +00:00
|
|
|
options PSERIES #PAPR-compliant systems (e.g. IBM p)
|
2010-07-13 21:24:08 +00:00
|
|
|
|
2015-01-01 22:26:12 +00:00
|
|
|
options FDT #Flattened Device Tree
|
2010-07-13 21:24:08 +00:00
|
|
|
options SCHED_ULE #ULE scheduler
|
2011-07-14 15:35:43 +00:00
|
|
|
options PREEMPTION #Enable kernel thread preemption
|
2010-07-13 21:24:08 +00:00
|
|
|
options INET #InterNETworking
|
|
|
|
options INET6 #IPv6 communications protocols
|
In the TCP stack, the hhook(9) framework provides hooks for kernel modules
to add actions that run when a TCP frame is sent or received on a TCP
session in the ESTABLISHED state. In the base tree, this functionality is
only used for the h_ertt module, which is used by the cc_cdg, cc_chd, cc_hd,
and cc_vegas congestion control modules.
Presently, we incur overhead to check for hooks each time a TCP frame is
sent or received on an ESTABLISHED TCP session.
This change adds a new compile-time option (TCP_HHOOK) to determine whether
to include the hhook(9) framework for TCP. To retain backwards
compatibility, I added the TCP_HHOOK option to every configuration file that
already defined "options INET". (Therefore, this patch introduces no
functional change. In order to see a functional difference, you need to
compile a custom kernel without the TCP_HHOOK option.) This change will
allow users to easily exclude this functionality from their kernel, should
they wish to do so.
Note that any users who use a custom kernel configuration and use one of the
congestion control modules listed above will need to add the TCP_HHOOK
option to their kernel configuration.
Reviewed by: rrs, lstewart, hiren (previous version), sjg (makefiles only)
Sponsored by: Netflix
Differential Revision: https://reviews.freebsd.org/D8185
2016-10-12 02:16:42 +00:00
|
|
|
options TCP_HHOOK # hhook(9) framework for TCP
|
2010-07-13 21:24:08 +00:00
|
|
|
options SCTP #Stream Control Transmission Protocol
|
|
|
|
options FFS #Berkeley Fast Filesystem
|
|
|
|
options SOFTUPDATES #Enable FFS soft updates support
|
|
|
|
options UFS_ACL #Support for access control lists
|
|
|
|
options UFS_DIRHASH #Improve performance on big directories
|
|
|
|
options UFS_GJOURNAL #Enable gjournal-based UFS journaling
|
2013-01-03 19:03:41 +00:00
|
|
|
options QUOTA #Enable disk quotas for UFS
|
2010-07-13 21:24:08 +00:00
|
|
|
options MD_ROOT #MD is a potential root device
|
2015-01-06 16:15:57 +00:00
|
|
|
options NFSCL #Network Filesystem Client
|
|
|
|
options NFSD #Network Filesystem Server
|
2010-07-13 21:24:08 +00:00
|
|
|
options NFSLOCKD #Network Lock Manager
|
|
|
|
options NFS_ROOT #NFS usable as root device
|
|
|
|
options MSDOSFS #MSDOS Filesystem
|
|
|
|
options CD9660 #ISO 9660 Filesystem
|
|
|
|
options PROCFS #Process filesystem (requires PSEUDOFS)
|
|
|
|
options PSEUDOFS #Pseudo-filesystem framework
|
2012-07-02 21:25:24 +00:00
|
|
|
options GEOM_PART_APM #Apple Partition Maps.
|
2010-07-13 21:24:08 +00:00
|
|
|
options GEOM_PART_GPT #GUID Partition Tables.
|
|
|
|
options GEOM_LABEL #Provides labelization
|
|
|
|
options COMPAT_FREEBSD32 #Compatible with FreeBSD/powerpc binaries
|
|
|
|
options COMPAT_FREEBSD5 #Compatible with FreeBSD5
|
|
|
|
options COMPAT_FREEBSD6 #Compatible with FreeBSD6
|
|
|
|
options COMPAT_FREEBSD7 #Compatible with FreeBSD7
|
2014-10-24 19:58:24 +00:00
|
|
|
options COMPAT_FREEBSD9 # Compatible with FreeBSD9
|
|
|
|
options COMPAT_FREEBSD10 # Compatible with FreeBSD10
|
2016-12-09 18:54:12 +00:00
|
|
|
options COMPAT_FREEBSD11 # Compatible with FreeBSD11
|
2010-07-13 21:24:08 +00:00
|
|
|
options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI
|
|
|
|
options KTRACE #ktrace(1) syscall trace support
|
|
|
|
options STACK #stack(9) support
|
|
|
|
options SYSVSHM #SYSV-style shared memory
|
|
|
|
options SYSVMSG #SYSV-style message queues
|
|
|
|
options SYSVSEM #SYSV-style semaphores
|
|
|
|
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
2015-12-18 14:35:27 +00:00
|
|
|
options PRINTF_BUFR_SIZE=128 # Prevent printf output being interspersed.
|
2010-07-13 21:24:08 +00:00
|
|
|
options HWPMC_HOOKS # Necessary kernel hooks for hwpmc(4)
|
|
|
|
options AUDIT # Security event auditing
|
2014-10-28 01:34:01 +00:00
|
|
|
options CAPABILITY_MODE # Capsicum capability mode
|
|
|
|
options CAPABILITIES # Capsicum capabilities
|
2010-07-13 21:24:08 +00:00
|
|
|
options MAC # TrustedBSD MAC Framework
|
2013-08-22 05:07:50 +00:00
|
|
|
options KDTRACE_HOOKS # Kernel DTrace hooks
|
|
|
|
options DDB_CTF # Kernel ELF linker loads CTF data
|
2010-07-13 21:24:08 +00:00
|
|
|
options INCLUDE_CONFIG_FILE # Include this file in kernel
|
|
|
|
|
2012-06-29 19:05:29 +00:00
|
|
|
# Debugging support. Always need this:
|
|
|
|
options KDB # Enable kernel debugger support.
|
2013-08-09 08:11:09 +00:00
|
|
|
options KDB_TRACE # Print a stack trace for a panic.
|
|
|
|
# For full debugger support use (turn off in stable branch):
|
2010-07-13 21:24:08 +00:00
|
|
|
options DDB #Support DDB
|
|
|
|
#options DEADLKRES #Enable the deadlock resolver
|
|
|
|
options INVARIANTS #Enable calls of extra sanity checking
|
|
|
|
options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
|
|
|
options WITNESS #Enable checks to detect deadlocks and cycles
|
|
|
|
options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
2010-07-30 20:25:04 +00:00
|
|
|
options MALLOC_DEBUG_MAXZONES=8 # Separate malloc(9) zones
|
2010-07-13 21:24:08 +00:00
|
|
|
|
2010-09-03 03:56:09 +00:00
|
|
|
# Make an SMP-capable kernel by default
|
|
|
|
options SMP # Symmetric MultiProcessor Kernel
|
2010-07-13 21:24:08 +00:00
|
|
|
|
|
|
|
# CPU frequency control
|
|
|
|
device cpufreq
|
|
|
|
|
|
|
|
# Standard busses
|
|
|
|
device pci
|
Native PCI-express HotPlug support.
PCI-express HotPlug support is implemented via bits in the slot
registers of the PCI-express capability of the downstream port along
with an interrupt that triggers when bits in the slot status register
change.
This is implemented for FreeBSD by adding HotPlug support to the
PCI-PCI bridge driver which attaches to the virtual PCI-PCI bridges
representing downstream ports on HotPlug slots. The PCI-PCI bridge
driver registers an interrupt handler to receive HotPlug events. It
also uses the slot registers to determine the current HotPlug state
and drive an internal HotPlug state machine. For simplicty of
implementation, the PCI-PCI bridge device detaches and deletes the
child PCI device when a card is removed from a slot and creates and
attaches a PCI child device when a card is inserted into the slot.
The PCI-PCI bridge driver provides a bus_child_present which claims
that child devices are present on HotPlug-capable slots only when a
card is inserted. Rather than requiring a timeout in the RC for
config accesses to not-present children, the pcib_read/write_config
methods fail all requests when a card is not present (or not yet
ready).
These changes include support for various optional HotPlug
capabilities such as a power controller, mechanical latch,
electro-mechanical interlock, indicators, and an attention button.
It also includes support for devices which require waiting for
command completion events before initiating a subsequent HotPlug
command. However, it has only been tested on ExpressCard systems
which support surprise removal and have none of these optional
capabilities.
PCI-express HotPlug support is conditional on the PCI_HP option
which is enabled by default on arm64, x86, and powerpc.
Reviewed by: adrian, imp, vangyzen (older versions)
Relnotes: yes
Differential Revision: https://reviews.freebsd.org/D6136
2016-05-05 22:26:23 +00:00
|
|
|
options PCI_HP # PCI-Express native HotPlug
|
2010-10-31 18:27:05 +00:00
|
|
|
device agp
|
2010-07-13 21:24:08 +00:00
|
|
|
|
2011-04-24 08:58:58 +00:00
|
|
|
# ATA controllers
|
|
|
|
device ahci # AHCI-compatible SATA controllers
|
|
|
|
device ata # Legacy ATA/SATA controllers
|
|
|
|
device mvs # Marvell 88SX50XX/88SX60XX/88SX70XX/SoC SATA
|
|
|
|
device siis # SiliconImage SiI3124/SiI3132/SiI3531 SATA
|
2010-07-13 21:24:08 +00:00
|
|
|
|
|
|
|
# SCSI Controllers
|
|
|
|
device ahc # AHA2940 and onboard AIC7xxx devices
|
|
|
|
options AHC_ALLOW_MEMIO # Attempt to use memory mapped I/O
|
|
|
|
options AHC_REG_PRETTY_PRINT # Print register bitfields in debug
|
|
|
|
# output. Adds ~128k to driver.
|
|
|
|
device isp # Qlogic family
|
|
|
|
device ispfw # Firmware module for Qlogic host adapters
|
|
|
|
device mpt # LSI-Logic MPT-Fusion
|
2012-06-28 20:48:24 +00:00
|
|
|
device mps # LSI-Logic MPT-Fusion 2
|
2010-07-13 21:24:08 +00:00
|
|
|
device sym # NCR/Symbios/LSI Logic 53C8XX/53C1010/53C1510D
|
|
|
|
|
2011-04-24 08:58:58 +00:00
|
|
|
# ATA/SCSI peripherals
|
|
|
|
device scbus # SCSI bus (required for ATA/SCSI)
|
2010-07-13 21:24:08 +00:00
|
|
|
device da # Direct Access (disks)
|
|
|
|
device sa # Sequential Access (tape etc)
|
|
|
|
device cd # CD
|
2011-04-24 08:58:58 +00:00
|
|
|
device pass # Passthrough device (direct ATA/SCSI access)
|
2010-07-13 21:24:08 +00:00
|
|
|
|
2014-05-11 05:49:35 +00:00
|
|
|
# vt is the default console driver, resembling an SCO console
|
|
|
|
device vt # Core console driver
|
2010-07-13 21:24:08 +00:00
|
|
|
device kbdmux
|
|
|
|
|
|
|
|
# Serial (COM) ports
|
|
|
|
device scc
|
|
|
|
device uart
|
2012-07-02 21:25:24 +00:00
|
|
|
device uart_z8530
|
2010-07-13 21:24:08 +00:00
|
|
|
|
2011-01-06 04:12:29 +00:00
|
|
|
# Ethernet hardware
|
2013-09-17 17:37:04 +00:00
|
|
|
device em # Intel PRO/1000 Gigabit Ethernet Family
|
2015-03-18 16:54:03 +00:00
|
|
|
device ix # Intel PRO/10GbE PCIE PF Ethernet Family
|
|
|
|
device ixv # Intel PRO/10GbE PCIE VF Ethernet Family
|
2011-01-06 04:12:29 +00:00
|
|
|
device glc # Sony Playstation 3 Ethernet
|
2013-10-20 01:31:09 +00:00
|
|
|
device llan # IBM pSeries Virtual Ethernet
|
2011-01-06 04:12:29 +00:00
|
|
|
|
2010-07-13 21:24:08 +00:00
|
|
|
# PCI Ethernet NICs that use the common MII bus controller code.
|
|
|
|
device miibus # MII bus support
|
|
|
|
device bge # Broadcom BCM570xx Gigabit Ethernet
|
|
|
|
device gem # Sun GEM/Sun ERI/Apple GMAC
|
|
|
|
device dc # DEC/Intel 21143 and various workalikes
|
|
|
|
device fxp # Intel EtherExpress PRO/100B (82557, 82558)
|
2013-09-17 17:37:04 +00:00
|
|
|
device re # RealTek 8139C+/8169/8169S/8110S
|
|
|
|
device rl # RealTek 8129/8139
|
2010-07-13 21:24:08 +00:00
|
|
|
|
|
|
|
# Pseudo devices.
|
|
|
|
device loop # Network loopback
|
|
|
|
device random # Entropy device
|
|
|
|
device ether # Ethernet support
|
|
|
|
device vlan # 802.1Q VLAN support
|
|
|
|
device tun # Packet tunnel.
|
|
|
|
device md # Memory "disks"
|
|
|
|
device ofwd # Open Firmware disks
|
|
|
|
device gif # IPv6 and IPv4 tunneling
|
|
|
|
device firmware # firmware assist module
|
|
|
|
|
|
|
|
# The `bpf' device enables the Berkeley Packet Filter.
|
|
|
|
# Be aware of the administrative consequences of enabling this!
|
|
|
|
# Note that 'bpf' is required for DHCP.
|
|
|
|
device bpf #Berkeley packet filter
|
|
|
|
|
|
|
|
# USB support
|
|
|
|
options USB_DEBUG # enable debug msgs
|
|
|
|
device uhci # UHCI PCI->USB interface
|
|
|
|
device ohci # OHCI PCI->USB interface
|
|
|
|
device ehci # EHCI PCI->USB interface
|
|
|
|
device usb # USB Bus (required)
|
|
|
|
device uhid # "Human Interface Devices"
|
|
|
|
device ukbd # Keyboard
|
|
|
|
options KBD_INSTALL_CDEV # install a CDEV entry in /dev
|
|
|
|
device ulpt # Printer
|
|
|
|
device umass # Disks/Mass storage - Requires scbus and da0
|
|
|
|
device ums # Mouse
|
|
|
|
device urio # Diamond Rio 500 MP3 player
|
|
|
|
# USB Ethernet
|
|
|
|
device aue # ADMtek USB Ethernet
|
|
|
|
device axe # ASIX Electronics USB Ethernet
|
|
|
|
device cdce # Generic USB over Ethernet
|
|
|
|
device cue # CATC USB Ethernet
|
|
|
|
device kue # Kawasaki LSI USB Ethernet
|
|
|
|
|
2012-01-05 22:06:01 +00:00
|
|
|
# Wireless NIC cards
|
2014-03-18 14:41:18 +00:00
|
|
|
options IEEE80211_SUPPORT_MESH
|
|
|
|
options AH_SUPPORT_AR5416
|
2012-01-05 22:06:01 +00:00
|
|
|
|
2010-07-13 21:24:08 +00:00
|
|
|
# FireWire support
|
|
|
|
device firewire # FireWire bus code
|
|
|
|
device sbp # SCSI over FireWire (Requires scbus and da)
|
|
|
|
device fwe # Ethernet over FireWire (non-standard!)
|
|
|
|
|
|
|
|
# Misc
|
2011-06-11 12:34:08 +00:00
|
|
|
device iicbus # I2C bus code
|
|
|
|
device kiic # Keywest I2C
|
|
|
|
device ad7417 # PowerMac7,2 temperature sensor
|
2012-08-19 19:44:13 +00:00
|
|
|
device ds1631 # PowerMac11,2 temperature sensor
|
2010-10-15 20:08:16 +00:00
|
|
|
device ds1775 # PowerMac7,2 temperature sensor
|
|
|
|
device fcu # Apple Fan Control Unit
|
|
|
|
device max6690 # PowerMac7,2 temperature sensor
|
2010-07-13 21:24:08 +00:00
|
|
|
device powermac_nvram # Open Firmware configuration NVRAM
|
|
|
|
device smu # Apple System Management Unit
|
2012-02-26 13:45:25 +00:00
|
|
|
device atibl # ATI-based backlight driver for PowerBooks/iBooks
|
2012-08-04 03:05:01 +00:00
|
|
|
device nvbl # nVidia-based backlight driver for PowerBooks/iBooks
|
2010-07-13 21:24:08 +00:00
|
|
|
|
|
|
|
# ADB support
|
|
|
|
device adb
|
|
|
|
device pmu
|
|
|
|
|
2011-06-11 12:34:08 +00:00
|
|
|
# Sound support
|
|
|
|
device sound # Generic sound driver (required)
|
|
|
|
device snd_ai2s # Apple I2S audio
|
|
|
|
device snd_uaudio # USB Audio
|
2010-07-13 21:24:08 +00:00
|
|
|
|