]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - sys/powerpc/conf/GENERIC
Copy head to stable/8 as part of 8.0 Release cycle.
[FreeBSD/stable/8.git] / sys / powerpc / conf / GENERIC
1 #
2 # GENERIC -- Generic kernel configuration file for FreeBSD/powerpc
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$
20
21 cpu             AIM
22 ident           GENERIC
23
24 #To statically compile in device wiring instead of /boot/device.hints
25 #hints          "GENERIC.hints"
26
27 makeoptions     DEBUG=-g                #Build kernel with gdb(1) debug symbols
28
29 # Platform support
30 options         POWERMAC                #NewWorld Apple PowerMacs
31 options         PSIM                    #GDB PSIM ppc simulator
32
33 options         SCHED_ULE               #ULE scheduler
34 options         INET                    #InterNETworking
35 options         INET6                   #IPv6 communications protocols
36 options         SCTP                    #Stream Control Transmission Protocol
37 options         FFS                     #Berkeley Fast Filesystem
38 options         SOFTUPDATES             #Enable FFS soft updates support
39 options         UFS_ACL                 #Support for access control lists
40 options         UFS_DIRHASH             #Improve performance on big directories
41 options         UFS_GJOURNAL            #Enable gjournal-based UFS journaling
42 options         MD_ROOT                 #MD is a potential root device
43 options         NFSCLIENT               #Network Filesystem Client
44 options         NFSSERVER               #Network Filesystem Server
45 options         NFSLOCKD                #Network Lock Manager
46 options         NFS_ROOT                #NFS usable as root device
47 options         MSDOSFS                 #MSDOS Filesystem
48 options         CD9660                  #ISO 9660 Filesystem
49 options         PROCFS                  #Process filesystem (requires PSEUDOFS)
50 options         PSEUDOFS                #Pseudo-filesystem framework
51 options         GEOM_PART_GPT           #GUID Partition Tables.
52 options         GEOM_LABEL              #Provides labelization
53 options         COMPAT_43TTY            #BSD 4.3 TTY compat (sgtty)
54 options         COMPAT_FREEBSD4         #Keep this for a while
55 options         COMPAT_FREEBSD5         #Compatible with FreeBSD5
56 options         COMPAT_FREEBSD6         #Compatible with FreeBSD6
57 options         COMPAT_FREEBSD7         #Compatible with FreeBSD7
58 options         SCSI_DELAY=5000         #Delay (in ms) before probing SCSI 
59 options         KTRACE                  #ktrace(1) syscall trace support
60 options         STACK                   #stack(9) support
61 options         SYSVSHM                 #SYSV-style shared memory
62 options         SYSVMSG                 #SYSV-style message queues
63 options         SYSVSEM                 #SYSV-style semaphores
64 options         P1003_1B_SEMAPHORES     # POSIX-style semaphores
65 options         _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
66 options         HWPMC_HOOKS             # Necessary kernel hooks for hwpmc(4)
67 options         AUDIT                   # Security event auditing
68 options         MAC                     # TrustedBSD MAC Framework
69
70 # Debugging for use in -current
71 options         KDB                     #Enable the kernel debugger
72 options         DDB                     #Support DDB
73 options         INVARIANTS              #Enable calls of extra sanity checking
74 options         INVARIANT_SUPPORT       #Extra sanity checks of internal structures, required by INVARIANTS
75 options         WITNESS                 #Enable checks to detect deadlocks and cycles
76 options         WITNESS_SKIPSPIN        #Don't run witness on spinlocks for speed
77
78 # To make an SMP kernel, the next line is needed
79 #options        SMP                     # Symmetric MultiProcessor Kernel
80
81 # CPU frequency control
82 device          cpufreq
83
84 # Standard busses
85 device          pci
86
87 # ATA and ATAPI devices
88 device          ata
89 device          atadisk         # ATA disk drives
90 device          atapicd         # ATAPI CDROM drives
91 #device         atapifd         # ATAPI floppy drives
92 #device         atapist         # ATAPI tape drives
93
94 # SCSI peripherals
95 device          scbus           # SCSI bus (required for SCSI)
96 device          da              # Direct Access (disks)
97 device          sa              # Sequential Access (tape etc)
98 device          cd              # CD
99 device          pass            # Passthrough device (direct SCSI access)
100
101 # syscons is the default console driver, resembling an SCO console
102 device          sc
103 device          kbdmux
104 options         SC_OFWFB        # OFW frame buffer
105 options         SC_DFLT_FONT    # compile font in
106 makeoptions     SC_DFLT_FONT=cp437
107
108 # Serial (COM) ports
109 device          scc
110 device          uart
111
112 # PCI Ethernet NICs that use the common MII bus controller code.
113 device          miibus          # MII bus support
114 device          bge             # Broadcom BCM570xx Gigabit Ethernet
115 device          bm              # Apple BMAC Ethernet
116 device          gem             # Sun GEM/Sun ERI/Apple GMAC
117 device          dc              # DEC/Intel 21143 and various workalikes
118 device          fxp             # Intel EtherExpress PRO/100B (82557, 82558)
119
120 # Pseudo devices.
121 device          loop            # Network loopback
122 device          random          # Entropy device
123 device          ether           # Ethernet support
124 device          tun             # Packet tunnel.
125 device          pty             # BSD-style compatibility pseudo ttys
126 device          md              # Memory "disks"
127 device          ofwd            # Open Firmware disks
128 device          gif             # IPv6 and IPv4 tunneling
129 device          faith           # IPv6-to-IPv4 relaying/(translation)
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.
134 device          bpf             #Berkeley packet filter
135
136 # USB support
137 device          uhci            # UHCI PCI->USB interface
138 device          ohci            # OHCI PCI->USB interface
139 device          ehci            # EHCI PCI->USB interface
140 device          usb             # USB Bus (required)
141 device          uhid            # "Human Interface Devices"
142 device          ukbd            # Keyboard
143 options         KBD_INSTALL_CDEV # install a CDEV entry in /dev
144 device          ulpt            # Printer
145 device          umass           # Disks/Mass storage - Requires scbus and da0
146 device          ums             # Mouse
147 device          urio            # Diamond Rio 500 MP3 player
148 # USB Ethernet
149 device          aue             # ADMtek USB Ethernet
150 device          axe             # ASIX Electronics USB Ethernet
151 device          cdce            # Generic USB over Ethernet
152 device          cue             # CATC USB Ethernet
153 device          kue             # Kawasaki LSI USB Ethernet
154
155 # FireWire support
156 device          firewire        # FireWire bus code
157 device          sbp             # SCSI over FireWire (Requires scbus and da)
158 device          fwe             # Ethernet over FireWire (non-standard!)
159
160 # Misc
161 device          powermac_nvram  # Open Firmware configuration NVRAM
162 device          smu             # Apple System Management Unit
163
164 # ADB support
165 device          adb
166 device          cuda
167 device          pmu
168
169 # Powermac I2C support
170 device          iicbus          # I2C bus code
171 device          kiic            # Keywest I2C
172
173 options         KTR
174 options         KTR_COMPILE=0xffffffff
175 #options        KTR_MASK=KTR_SIG
176 options         KTR_VERBOSE