-
-
Save sumikawa/ae481d73144ca1046ae2cb8e38d92a0e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# GENERIC -- Generic kernel configuration file for FreeBSD/i386 | |
# | |
# 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: src/sys/i386/conf/GENERIC,v 1.413.2.13 2005/04/02 16:37:58 scottl Exp $ | |
machine i386 | |
cpu I486_CPU | |
ident GENERIC | |
options CPU_ELAN | |
# To statically compile in device wiring instead of /boot/device.hints | |
#hints "GENERIC.hints" # Default places to look for devices. | |
options SCHED_4BSD # 4BSD scheduler | |
options INET # InterNETworking | |
options INET6 # IPv6 communications protocols | |
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 PROCFS # Process filesystem (requires PSEUDOFS) | |
options PSEUDOFS # Pseudo-filesystem framework | |
options GEOM_GPT # GUID Partition Tables. | |
options COMPAT_43 # Compatible with BSD 4.3 [KEEP THIS!] | |
options COMPAT_FREEBSD4 # Compatible with FreeBSD4 | |
options SCSI_DELAY=15000 # Delay (in ms) before probing SCSI | |
options KTRACE # ktrace(1) 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 | |
options KBD_INSTALL_CDEV # install a CDEV entry in /dev | |
options ADAPTIVE_GIANT # Giant mutex is adaptive. | |
device apic # I/O APIC | |
# Bus support. Do not remove isa, even if you have no isa slots | |
device isa | |
# ATA and ATAPI devices | |
device ata | |
device atadisk # ATA disk drives | |
options ATA_STATIC_ID # Static device numbering | |
# atkbdc0 controls both the keyboard and the PS/2 mouse | |
device atkbdc # AT keyboard controller | |
device atkbd # AT keyboard | |
device vga # VGA video card driver | |
# Floating point support - do not disable. | |
device npx | |
# Serial (COM) ports | |
device sio # 8250, 16[45]50 based serial ports | |
# Parallel port | |
device ppc | |
device ppbus # Parallel port bus (required) | |
device lpt # Printer | |
# PCI Ethernet NICs that use the common MII bus controller code. | |
# NOTE: Be sure to keep the 'device miibus' line in order to use these NICs! | |
device miibus # MII bus support | |
# 'device ed' requires 'device miibus' | |
device ed # NE[12]000, SMC Ultra, 3c503, DS8390 cards | |
# Pseudo devices. | |
device loop # Network loopback | |
device mem # Memory and kernel memory devices | |
device io # I/O device | |
device random # Entropy device | |
device ether # Ethernet support | |
device tun # Packet tunnel. | |
device pty # Pseudo-ttys (telnet etc) | |
device gif # IPv6 and IPv4 tunneling | |
device faith # IPv6-to-IPv4 relaying (translation) | |
# 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment