source: hybrid/branches/releng-9.0/nanobsd/cfg/kernel.wleiden@ 10574

Last change on this file since 10574 was 10574, checked in by rick, 13 years ago

Need multiple routing tables to support features like to one in nodefactory#129

  • Property svn:eol-style set to LF
File size: 7.6 KB
Line 
1#
2# GENERIC -- Generic kernel configuration file for FreeBSD/i386
3#
4# For more information on this file, please read the handbook section on
5# Kernel Configuration Files:
6#
7# http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html
8#
9# The handbook is also available locally in /usr/share/doc/handbook
10# if you've installed the doc distribution, otherwise always see the
11# FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the
12# latest information.
13#
14# An exhaustive list of options and more detailed explanations of the
15# device lines is also present in the ../../conf/NOTES and NOTES files.
16# If you are in doubt as to the purpose or necessity of a line, check first
17# in NOTES.
18#
19# $FreeBSD: releng/9.0/sys/i386/conf/GENERIC 227305 2011-11-07 13:40:54Z marius $
20
21cpu I486_CPU
22cpu I586_CPU
23cpu I686_CPU
24ident WLEIDEN
25
26# Uncomment if you like to compile a debugging kernel
27#makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
28#options KDB # Kernel debugger related code
29#options KDB_TRACE # Print a stack trace for a panic
30
31
32options CPU_ELAN
33options CPU_SOEKRIS # Some units are Soekris Machines.
34options CPU_GEODE # net4801 requirement
35options HZ=250 # Because ofthe "ELAN" timecounter.
36
37options NO_SWAPPING # Embedded Machines.
38options SW_WATCHDOG # Remote emergency reboots.
39
40options ROUTETABLES=6 # Multiple routing table support
41
42# To statically compile in device wiring instead of /boot/device.hints
43#hints "GENERIC.hints" # Default places to look for devices.
44
45options SCHED_ULE # ULE scheduler
46options PREEMPTION # Enable kernel thread preemption
47options INET # InterNETworking
48options INET6 # IPv6 communications protocols
49options SCTP # Stream Control Transmission Protocol
50options FFS # Berkeley Fast Filesystem
51options SOFTUPDATES # Enable FFS soft updates support
52options NFS_ROOT # Allow NFS to be / mount
53options NFSCLIENT # Network Filesystem Client
54#options NFSLOCKD # Network Lock Manager
55options PSEUDOFS # Pseudo-filesystem framework
56options GEOM_LABEL # Provides labelization
57options KTRACE # ktrace(1) support
58#options STACK # stack(9) support
59options SYSVSHM # SYSV-style shared memory
60options SYSVMSG # SYSV-style message queues
61options SYSVSEM # SYSV-style semaphores
62options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
63options KBD_INSTALL_CDEV # install a CDEV entry in /dev
64options INCLUDE_CONFIG_FILE # Include this file in kernel
65
66# To make an SMP kernel, the next two lines are needed
67options SMP # Symmetric MultiProcessor Kernel
68device apic # I/O APIC
69
70# CPU frequency control
71device cpufreq
72
73# Bus support.
74device acpi
75device eisa
76device pci
77
78# ATA controllers
79device ahci # AHCI-compatible SATA controllers
80device ata # Legacy ATA/SATA controllers
81options ATA_CAM # Handle legacy controllers with CAM
82options ATA_STATIC_ID # Static device numbering
83
84# ATA/SCSI peripherals
85device scbus # SCSI bus (required for ATA/SCSI)
86device da # Direct Access (disks)
87
88# Add suspend/resume support for the i8254.
89device pmtimer
90
91# PCCARD (PCMCIA) support
92# PCMCIA and cardbus bridge support
93device cbb # cardbus (yenta) bridge
94device pccard # PC Card (16-bit) bus
95device cardbus # CardBus (32-bit) bus
96
97# Serial (COM) ports
98device uart # Generic UART driver
99
100# PCI Ethernet NICs that use the common MII bus controller code.
101# NOTE: Be sure to keep the 'device miibus' line in order to use these NICs!
102device miibus # MII bus support
103device vr # VIA Rhine, Rhine II
104device sis # SiS 900/SiS 7016
105
106# Wireless NIC cards
107device wlan # 802.11 support
108options IEEE80211_DEBUG # enable debug msgs
109options IEEE80211_AMPDU_AGE # age frames in AMPDU reorder q's
110options IEEE80211_SUPPORT_MESH # enable 802.11s draft support
111device ath # Atheros NIC's
112device ath_pci # Atheros pci/cardbus glue
113device ath_hal # pci/cardbus chip support
114options AH_SUPPORT_AR5416 # enable AR5416 tx/rx descriptors
115device ath_rate_sample # SampleRate tx rate control for ath
116device ral # Ralink Technology RT2500 wireless NICs.
117device wi # WaveLan/Intersil/Symbol 802.11 wireless NICs.
118
119# Pseudo devices.
120device loop # Network loopback
121device random # Entropy device
122device ether # Ethernet support
123device vlan # 802.1Q VLAN support
124device tun # Packet tunnel.
125device pty # BSD-style compatibility pseudo ttys
126device md # Memory "disks"
127device gif # IPv6 and IPv4 tunneling
128device faith # IPv6-to-IPv4 relaying (translation)
129device firmware # firmware assist module
130
131# The `bpf' device enables the Berkeley Packet Filter.
132# Be aware of the administrative consequences of enabling this!
133# Note that 'bpf' is required for DHCP.
134device bpf # Berkeley packet filter
135
136# USB support
137options USB_DEBUG # enable debug msgs
138device uhci # UHCI PCI->USB interface
139device ohci # OHCI PCI->USB interface
140device ehci # EHCI PCI->USB interface (USB 2.0)
141device xhci # XHCI PCI->USB interface (USB 3.0)
142device usb # USB Bus (required)
143device umass # Disks/Mass storage - Requires scbus and da
144# USB Serial devices
145device u3g # USB-based 3G modems (Option, Huawei, Sierra)
146device uark # Technologies ARK3116 based serial adapters
147device ubsa # Belkin F5U103 and compatible serial adapters
148device uftdi # For FTDI usb serial adapters
149device uipaq # Some WinCE based devices
150device uplcom # Prolific PL-2303 serial adapters
151device uslcom # SI Labs CP2101/CP2102 serial adapters
152device uvisor # Visor and Palm devices
153device uvscom # USB serial support for DDI pocket's PHS
154#device urio # Diamond Rio 500 MP3 player
155#device uscanner # Scanners
156# USB Ethernet, requires miibus
157device aue # ADMtek USB Ethernet
158device axe # ASIX Electronics USB Ethernet
159device cdce # Generic USB over Ethernet
160device cue # CATC USB Ethernet
161device kue # Kawasaki LSI USB Ethernet
162device mos # Mos USB Ethernet
163device rue # RealTek RTL8150 USB Ethernet
164device udav # Davicom DM9601E USB
165# USB Wireless
166device rum # Ralink Technology RT2501USB wireless NICs
167device run # Ralink Technology RT2700/RT2800/RT3000 NICs.
168device uath # Atheros AR5523 wireless NICs
169device upgt # Conexant/Intersil PrismGT wireless NICs.
170device ural # Ralink Technology RT2500USB wireless NICs
171device urtw # Realtek RTL8187B/L wireless NICs
172device zyd # ZyDAS zd1211/zd1211b wireless NICs
173
174#
175# Authentication, encryption and protection on network layer
176device wlan_xauth #802.11 external authenticator support
177device enc #IPsec interface
178device crypto # core crypto support
179device cryptodev # /dev/crypto for access to h/w
180device pf #PF OpenBSD packet-filter firewall
181device pflog #logging support interface for PF
182options IPSEC #IP security (requires device crypto)
183options IPSEC_FILTERTUNNEL #filter ipsec packets from a tunnel
184
185options NETGRAPH # netgraph(4) system
186options NETGRAPH_SOCKET
187options NETGRAPH_MPPC_ENCRYPTION
188options NETGRAPH_IFACE
189options NETGRAPH_PPP
190options NETGRAPH_TEE
191options NETGRAPH_PPPOE
192options NETGRAPH_ETHER
193
194# glxsb is a driver for the Security Block in AMD Geode LX processors.
195# Requires 'device crypto'.
196device glxsb # AMD Geode LX Security Block
197
198
199# Firewall fore the use of fancy stuff, like forwarding ports
200options IPFIREWALL
201options IPFIREWALL_DEFAULT_TO_ACCEPT
202options IPFIREWALL_FORWARD
203options IPFIREWALL_NAT
204options LIBALIAS # Required for IPFIREWALL_NAT
205
206# Allow combining interfaces
207device if_bridge
208
Note: See TracBrowser for help on using the repository browser.