144603Sdcs# This is loader.conf - a file full of useful variables that you can
244603Sdcs# set to change the default load behavior of your system. You should
344603Sdcs# not edit this file!  Put any overrides into one of the
444603Sdcs# loader_conf_files instead and you will be able to update these
544603Sdcs# defaults later without spamming your local configuration information.
644603Sdcs#
744603Sdcs# All arguments must be in double quotes.
844603Sdcs#
950477Speter# $FreeBSD: stable/10/sys/boot/forth/loader.conf 316130 2017-03-29 08:02:12Z ngie $
1044603Sdcs
1144603Sdcs##############################################################
1244603Sdcs###  Basic configuration options  ############################
1344603Sdcs##############################################################
1444603Sdcs
15293293Sdteskeexec="echo Loading /boot/defaults/loader.conf"
1644603Sdcs
1765785Sdcskernel="kernel"		# /boot sub-directory containing kernel and modules
1865785Sdcsbootfile="kernel"	# Kernel name (possibly absolute path)
19135986Srukernel_options=""	# Flags to be passed to the kernel
2044603Sdcs
2197201Sgordonloader_conf_files="/boot/device.hints /boot/loader.conf /boot/loader.conf.local"
2297201Sgordonnextboot_conf="/boot/nextboot.conf"
2397201Sgordonnextboot_enable="NO"
2444603Sdcs
2544603Sdcsverbose_loading="NO"		# Set to YES for verbose loader output
2644603Sdcs
2744603Sdcs
2844603Sdcs##############################################################
2944603Sdcs###  Splash screen configuration  ############################
3044603Sdcs##############################################################
3144603Sdcs
3247171Sdcssplash_bmp_load="NO"		# Set this to YES for bmp splash screen!
3347171Sdcssplash_pcx_load="NO"		# Set this to YES for pcx splash screen!
34230109Seadlersplash_txt_load="NO"		# Set this to YES for TheDraw splash screen!
3544603Sdcsvesa_load="NO"			# Set this to YES to load the vesa module
3644603Sdcsbitmap_load="NO"		# Set this to YES if you want splash screen!
37230109Seadlerbitmap_name="splash.bmp"	# Set this to the name of the file
3865939Sdcsbitmap_type="splash_image_data" # and place it on the module_path
3944603Sdcs
4044603Sdcs
4144603Sdcs##############################################################
42293293Sdteske###  Random number generator configuration  ##################
43256381Smarkm##############################################################
44256381Smarkm
45256381Smarkmentropy_cache_load="NO"			# Set this to YES to load entropy at boot time
46256381Smarkmentropy_cache_name="/boot/entropy"	# Set this to the name of the file
47256381Smarkmentropy_cache_type="/boot/entropy"	
48256381Smarkm#kern.random.sys.seeded="0"		# Set this to 1 to start /dev/random
49256381Smarkm					# without waiting for a (re)seed.
50256381Smarkm
51256381Smarkm
52256381Smarkm##############################################################
53289508Strasz###  Initial memory disk settings  ###########################
54289508Strasz##############################################################
55289508Strasz
56289508Strasz#initmd_load="YES"		# The "initmd" prefix is arbitrary.
57289508Strasz#initmd_type="md_image"		# Create md(4) disk at boot.
58289508Strasz#initmd_name="/boot/root.img"	# Path to a file containing the image.
59289508Strasz#rootdev="ufs:/dev/md0"		# Set the root filesystem to md(4) device.
60289508Strasz
61289508Strasz
62289508Strasz##############################################################
6344603Sdcs###  Loader settings  ########################################
6444603Sdcs##############################################################
6544603Sdcs
66262702Sdteske#loader_delay="3"		# Delay in seconds before loading anything.
67262702Sdteske				# Default is unset and disabled (no delay).
68146421Ssobomax#autoboot_delay="10"		# Delay in seconds before autobooting,
69146421Ssobomax				# set to -1 if you don't want user to be
70146421Ssobomax				# allowed to interrupt autoboot process and
71172327Sru				# escape to the loader prompt, set to
72172327Sru				# "NO" to disable autobooting
73281843Sdteske#password=""			# Prevent changes to boot options
74281843Sdteske#bootlock_password=""		# Prevent booting (see check-password.4th(8))
75281843Sdteske#geom_eli_passphrase_prompt="NO" # Prompt for geli(8) passphrase to mount root
76293802Sallanjudebootenv_autolist="YES"		# Auto populate the list of ZFS Boot Environments
77117090Sbrueffer#beastie_disable="NO"		# Turn the beastie boot menu on and off
78262701Sdteske#kernels="kernel kernel.old"	# Kernels to display in the boot menu
79227727Smiwi#loader_logo="orbbw"		# Desired logo: orbbw, orb, fbsdbw, beastiebw, beastie, none
80149213Siedowse#comconsole_speed="9600"	# Set the current serial console speed
81148515Sbrian#console="vidconsole"		# A comma separated list of console(s)
8254247Sdcs#currdev="disk1s1a"		# Set the current device
83133217Sjmgmodule_path="/boot/modules"	# Set the module search path
8452749Sdcs#prompt="\\${interpret}"	# Set the command prompt
8554247Sdcs#root_disk_unit="0"		# Force the root disk unit number
8654247Sdcs#rootdev="disk1s1a"		# Set the root filesystem
87312540Sasomers#dumpdev="disk1s1b"		# Set a dump device early in the boot process
88224408Srodrigc#tftp.blksize="1428"		# Set the RFC 2348 TFTP block size.
89224408Srodrigc				# If the TFTP server does not support RFC 2348,
90224408Srodrigc				# the block size is set to 512.  If the value
91224408Srodrigc				# is out of range ( < 8 || > 9008 ) an error is
92224408Srodrigc				# returned.
93278602Sian#twiddle_divisor="1"		# >1 means slow down the progress indicator.
9444603Sdcs
9544603Sdcs
9644603Sdcs##############################################################
9744603Sdcs###  Kernel settings  ########################################
9844603Sdcs##############################################################
9944603Sdcs
100148515Sbrian# The following boot_ variables are enabled by setting them to any value.
101148515Sbrian# Their presence in the kernel environment (see kenv(1)) has the same
102148515Sbrian# effect as setting the given boot flag (see boot(8)).
103148515Sbrian
104148515Sbrian#boot_askname=""	# -a: Prompt the user for the name of the root device
105148515Sbrian#boot_cdrom=""		# -C: Attempt to mount root file system from CD-ROM
106148515Sbrian#boot_ddb=""		# -d: Instructs the kernel to start in the DDB debugger
107150469Sru#boot_dfltroot=""	# -r: Use the statically configured root file system
108148515Sbrian#boot_gdb=""		# -g: Selects gdb-remote mode for the kernel debugger
109148515Sbrian#boot_multicons=""	# -D: Use multiple consoles
110150469Sru#boot_mute=""		# -m: Mute the console
111150469Sru#boot_pause=""		# -p: Pause after each line during device probing
112148515Sbrian#boot_serial=""		# -h: Use serial console
113148515Sbrian#boot_single=""		# -s: Start system in single-user mode
114148515Sbrian#boot_verbose=""	# -v: Causes extra debugging information to be printed
115226833Spluknet#init_path="/sbin/init:/sbin/oinit:/sbin/init.bak:/rescue/init"
11654265Smsmith			# Sets the list of init candidates
117166486Simp#init_shell="/bin/sh"	# The shell binary used by init(8).
118166486Simp#init_script=""		# Initial script to run by init(8) before chrooting.
119166486Simp#init_chroot=""		# Directory for init(8) to chroot into.
12044603Sdcs
12144603Sdcs
12244603Sdcs##############################################################
12344603Sdcs###  Kernel tunables  ########################################
12444603Sdcs##############################################################
12544603Sdcs
126132853Sceri#hw.physmem="1G"		# Limit physical memory. See loader(8)
12799332Smini#kern.dfldsiz=""		# Set the initial data size limit
12899332Smini#kern.dflssiz=""		# Set the initial stack size limit
12999332Smini#kern.hz="100"			# Set the kernel interval timer rate
13099332Smini#kern.maxbcache=""		# Set the max buffer cache KVA storage
13199332Smini#kern.maxdsiz=""		# Set the max data size
13299332Smini#kern.maxfiles=""		# Set the sys. wide open files limit
13399332Smini#kern.maxproc=""		# Set the maximum # of processes
13499332Smini#kern.maxssiz=""		# Set the max stack size
13599332Smini#kern.maxswzone=""		# Set the max swmeta KVA storage
13699332Smini#kern.maxtsiz=""		# Set the max text size
13786902Srwatson#kern.maxusers="32"		# Set size of various static tables
138217689Spluknet#kern.msgbufsize="65536"	# Set size of kernel message buffer
139148817Skrion#kern.nbuf=""			# Set the number of buffer headers
14099332Smini#kern.ncallout=""		# Set the maximum # of timer events
141202143Sbrooks#kern.ngroups="1023"		# Set the maximum # of supplemental groups
14299332Smini#kern.sgrowsiz=""		# Set the amount to grow stack
143225122Smarck#kern.cam.boot_delay="10000"	# Delay (in ms) of root mount for CAM bus
144225122Smarck				# registration, useful for USB sticks as root
145102862Sbrooks#kern.cam.scsi_delay="2000"	# Delay (in ms) before probing SCSI
146299706Spfg#kern.ipc.maxsockets=""		# Set the maximum number of sockets available
14744603Sdcs#kern.ipc.nmbclusters=""	# Set the number of mbuf clusters
14899332Smini#kern.ipc.nsfbufs=""		# Set the number of sendfile(2) bufs
14944603Sdcs#net.inet.tcp.tcbhashsize=""	# Set the value of TCBHASHSIZE
15095524Sdcs#vfs.root.mountfrom=""		# Specify root partition in a way the
15195524Sdcs				# kernel understands
152125091Sdes#vm.kmem_size=""		# Sets the size of kernel memory (bytes)
153283971Sdteske#debug.kdb.break_to_debugger="0" # Allow console to break into debugger.
15470706Sjhb#debug.ktr.cpumask="0xf"	# Bitmask of CPUs to enable KTR on
15570706Sjhb#debug.ktr.mask="0x1200"	# Bitmask of KTR events to enable
15670706Sjhb#debug.ktr.verbose="1"		# Enable console dump of KTR events
157111749Sharti#net.graph.maxalloc="128"	# Maximum number of queue items to allocate
15844603Sdcs
15944603Sdcs
16044603Sdcs##############################################################
161293293Sdteske###  ATA modules  ############################################
162209466Sbrucec##############################################################
163209466Sbrucec
164209466Sbrucecataacard_load="NO"		# ACARD
165209466Sbrucecataacerlabs_load="NO"		# Acer Labs Inc. (ALI)
166209466Sbrucecataamd_load="NO"		# American Micro Devices (AMD)
167209466Sbrucecataati_load="NO"		# ATI
168209466Sbrucecatacenatek_load="NO"		# Cenatek
169209466Sbrucecatacypress_load="NO"		# Cypress
170209466Sbrucecatacyrix_load="NO"		# Cyrix
171209466Sbrucecatahighpoint_load="NO"		# HighPoint
172209466Sbrucecataintel_load="NO"		# Intel
173209466Sbrucecataite_load="NO"		# Integrated Technology Inc. (ITE)
174209466Sbrucecatajmicron_load="NO"		# JMicron
175209466Sbrucecatamarvell_load="NO"		# Marvell
176209466Sbrucecatamicron_load="NO"		# Micron
177209466Sbrucecatanational_load="NO"		# National
178209466Sbrucecatanetcell_load="NO"		# NetCell
179209466Sbrucecatanvidia_load="NO"		# nVidia
180209466Sbrucecatapromise_load="NO"		# Promise
181209466Sbrucecataserverworks_load="NO"	# ServerWorks
182209466Sbrucecatasiliconimage_load="NO"	# Silicon Image Inc. (SiI) (formerly CMD)
183209466Sbrucecatasis_load="NO"		# Silicon Integrated Systems Corp.(SiS)
184209466Sbrucecatavia_load="NO"		# VIA Technologies Inc.
185209466Sbrucec
186209466Sbrucec
187209466Sbrucec##############################################################
18844603Sdcs###  Filesystem and related modules  #########################
18944603Sdcs##############################################################
19044603Sdcs
19144603Sdcs# Filesystems
19244603Sdcs
19344603Sdcscd9660_load="NO"		# ISO 9660 filesystem
19477034Srufdescfs_load="NO"		# Filedescriptors filesystem
195126455Sdeslinprocfs_load="NO"		# Linux compatibility process filesystem
196161286Sbruefferlinsysfs_load="NO"		# Linux compatibility system filesystem
19777162Srumsdosfs_load="NO"		# FAT-12/16/32
198135986Srunfsclient_load="NO"		# NFS client
199135986Srunfsserver_load="NO"		# NFS server
20063962Ssheldonhnullfs_load="NO"		# Null filesystem
20144603Sdcsprocfs_load="NO"		# Process filesystem
202161448Sbruefferreiserfs_load="NO"		# ReiserFS
20377034Sruunionfs_load="NO"		# Union filesystem
204168554Spjdzfs_load="NO"   		# ZFS
20544603Sdcs
20644603Sdcs# Related stuff
20744603Sdcs
208152307Spjdgeom_bde_load="NO"		# Disk encryption driver (see gbde(4,8))
209152307Spjdgeom_ccd_load="NO"		# Concatenated disk driver (see ccd(4),
210152307Spjd				# ccdconfig(8))
211152307Spjdgeom_concat_load="NO"		# Concatenated disk driver (see gconcat(8))
212152309Spjdgeom_eli_load="NO"		# Disk encryption driver (see geli(8))
213152307Spjdgeom_gate_load="NO"		# Userland disk driver (see geom_gate(4),
214152307Spjd				# ggatec(8), ggated(8), ggatel(8))
215182194Smatteogeom_journal_load="NO"		# Journaled filesystem driver (see gjournal(8))
216152307Spjdgeom_label_load="NO"		# File system labels (see glabel(8))
217152309Spjdgeom_md_load="NO"		# Memory disk driver (vnode/swap/malloc) (see
218166003Smaxim				# md(4), mdconfig(8))
219152307Spjdgeom_mirror_load="NO"		# RAID1 disk driver (see gmirror(8))
220202437Straszgeom_mountver_load="NO"		# Mount verification disk driver
221152307Spjdgeom_nop_load="NO"		# Transparent disk driver (see gnop(8))
222152307Spjdgeom_raid3_load="NO"		# RAID3 disk driver (see graid3(8))
223152307Spjdgeom_shsec_load="NO"		# Shared secret disk driver (see gshsec(8))
224152307Spjdgeom_stripe_load="NO"		# RAID0 disk driver (see gstripe(8))
225152309Spjdgeom_uzip_load="NO"		# Compressed disk images driver (see mkuzip(8))
226152307Spjdgeom_vinum_load="NO"		# Concatenated/mirror/raid driver (see vinum(4))
22744603Sdcs
22844603Sdcs
22944603Sdcs##############################################################
230209466Sbrucec###  FireWire modules  #######################################
231209466Sbrucec##############################################################
232209466Sbrucec
233209466Sbrucecfirewire_load="NO"              # IEEE1394 High-performance Serial Bus
234209466Sbrucecfwe_load="NO"                   # Ethernet emulation driver for FireWire
235209466Sbrucecfwip_load="NO"                  # IP over FireWire driver
236209466Sbrucecfwohci_load="NO"                # OHCI FireWire chipset device driver
237209466Sbrucecsbp_load="NO"                   # SBP-2 Mass Storage Devices driver
238209466Sbrucecsbp_targ_load="NO"		# SBP-2 Target mode
239209466Sbrucec
240209466Sbrucec
241209466Sbrucec##############################################################
24244603Sdcs###  Screen saver modules  ###################################
24344603Sdcs##############################################################
24444603Sdcs
24544603Sdcs# This is best done in rc.conf
24644603Sdcs
24744603Sdcsscreensave_load="NO"		# Set to YES to load a screensaver module
24844603Sdcsscreensave_name="green_saver"	# Set to the name of the screensaver module
24944603Sdcs
25044603Sdcs
25144603Sdcs##############################################################
25244603Sdcs###  Emulation modules  ######################################
25344603Sdcs##############################################################
25444603Sdcs
25544603Sdcsibcs2_load="NO"			# IBCS2 (SCO) emulation
25644603Sdcsibcs2_coff_load="NO"
25744603Sdcslinux_load="NO"			# Linux emulation
258197518Sbzlindev_load="NO"		# Linux-specific pseudo devices (see lindev(4))
25947173Sdcssvr4_load="NO"			# SystemV R4 emulation
26047173Sdcsstreams_load="NO"		# System V streams module
26144603Sdcs
26244603Sdcs
26344603Sdcs##############################################################
26444603Sdcs###  Networking modules  #####################################
26544603Sdcs##############################################################
26644603Sdcs
26744603Sdcsif_disc_load="NO"		# Discard device
268166005Smaximif_ef_load="NO"			# pseudo-device providing support for multiple
269166005Smaxim				# ethernet frame types
270195892Sbzif_epair_load="NO"		# Virtual b-t-b Ethernet-like interface pair
271106335Sminiif_faith_load="NO"		# IPv6-to-IPv4 TCP relay capturing interface
272106335Sminiif_gif_load="NO"		# generic tunnel interface
273106335Sminiif_gre_load="NO"		# encapsulating network device
274106335Sminiif_stf_load="NO"		# 6to4 tunnel interface
275106335Sminiif_tap_load="NO"		# Ethernet tunnel software network interface
27644603Sdcsif_tun_load="NO"		# Tunnel driver (user process ppp)
277106335Sminiif_vlan_load="NO"		# IEEE 802.1Q VLAN network interface
27844603Sdcsipfw_load="NO"			# Firewall
279126263Smlaierpf_load="NO"			# packet filter
28044603Sdcs
28144603Sdcs
28244603Sdcs##############################################################
28347175Sdcs###  Networking drivers  #####################################
28447175Sdcs##############################################################
28547175Sdcs
286218815Sdangerbridgestp_load="NO"		# if_bridge(4) support
28754020Sdcsmiibus_load="NO"		# miibus support, needed for some drivers
288228576Sglebiuscarp_load="NO"			# carp(4) protocol
289183592Sstasif_ae_load="NO"			# Attansic/Atheros L2 FastEthernet
290179106Syongariif_age_load="NO"		# Attansic/Atheros L1 Gigabit Ethernet
291193880Syongariif_alc_load="NO"		# Atheros AR8131/AR8132 Ethernet
292184870Syongariif_ale_load="NO"		# Atheros AR8121/AR8113/AR8114 Ethernet
29355992Swpaulif_an_load="NO"			# Aironet 4500/4800 802.11 wireless NICs
294148798Skrionif_ath_load="NO"		# Atheros IEEE 802.11 wireless NICs
295148817Skrionif_aue_load="NO"		# ADMtek AN986 Pegasus USB Ethernet
296148817Skrionif_axe_load="NO"		# ASIX Electronics AX88172 USB Ethernet
297161286Sbruefferif_bce_load="NO"		# Broadcom NetXtreme II Gigabit Ethernet
298135986Sruif_bfe_load="NO"		# Broadcom BCM4401
299161286Sbruefferif_bge_load="NO"		# Broadcom BCM570x PCI Gigabit Ethernet
300218815Sdangerif_bridge_load="NO"		# if_bridge(4) devices
301209466Sbrucecif_bwi_load="NO"		# Broadcom BCM53xx IEEE 802.11b/g wireness NICs
302204328Sweongyoif_bwn_load="NO"		# Broadcom BCM43xx IEEE 802.11 wireless NICs
303219647Sdavidchif_bxe_load="NO"		# Broadcom NetXtreme II 10Gb Ethernet
304194246Smariusif_cas_load="NO"		# Sun Cassini/Cassini+ and NS DP83065 Saturn
305106330Sminiif_cm_load="NO"			# SMC (90c26, 90c56, 90c66)
306148817Skrionif_cs_load="NO"			# Crystal Semiconductor CS8920
307148817Skrionif_cue_load="NO"		# CATC USB-EL1210A USB Ethernet
308209466Sbrucecif_cxgb_load="NO"		# Chelsio T3 10 Gigabit Ethernet
309316130Sngieif_cxgbe_load="NO"		# Chelsio T4/T5/T6 1/10/25/40/100 Gigabit Ethernet
31055017Swpaulif_dc_load="NO"			# DEC/Intel 21143 and various workalikes
311161286Sbruefferif_de_load="NO"			# DEC DC21x4x Ethernet
312166005Smaximif_ed_load="NO"			# National Semiconductor DS8390/WD83C690
313166005Smaxim				# Ethernet
314161286Sbruefferif_em_load="NO"			# Intel(R) PRO/1000 Gigabit Ethernet
315115054Smurrayif_en_load="NO"			# Midway-based ATM interfaces
316106330Sminiif_ep_load="NO"			# 3Com Etherlink III (3c5x9)
317207630Sdelphijif_et_load="NO"			# Agere ET1310 10/100/Gigabit Ethernet
318161286Sbruefferif_ex_load="NO"			# Intel EtherExpress Pro/10 Ethernet
319209466Sbrucecif_fatm_load="NO"		# Fore PCA200E ATM
320166005Smaximif_fe_load="NO"			# Fujitsu MB86960A/MB86965A based Ethernet
321166005Smaxim				# adapters
32254019Sdcsif_fxp_load="NO"		# Intel EtherExpress PRO/100B (82557, 82558)
323158569Smariusif_gem_load="NO"		# Sun GEM/Sun ERI/Apple GMAC
324209466Sbrucecif_hatm_load="NO"		# Fore/Marconi HE155 and HE622
325158569Smariusif_hme_load="NO"		# Sun Microelectronics STP2002-STQ Ethernet
326115054Smurrayif_ie_load="NO"			# Intel 82586
327177693Sbruefferif_igb_load="NO"		# Intel(R) PRO/1000 Gigabit Ethernet
328161286Sbruefferif_ipw_load="NO"		# Intel PRO/Wireless 2100 wireless
329166005Smaximif_iwi_load="NO"		# Intel PRO/Wireless 2200BG/2225BG/2915ABG
330166005Smaxim				# wireless
331209466Sbrucecif_iwn_load="NO"		# Intel Wireless WiFi Link 802.11n wireless
332161449Sbruefferif_ixgb_load="NO"		# Intel PRO/10Gb Ethernet
333177693Sbruefferif_ixgbe_load="NO"		# Intel PRO/10Gb Ethernet PCI Express
334316130Sngieif_ixl_load="NO"		# Intel XL710 Ethernet 40Gb Base driver
335316130Sngieif_ixlv_load="NO"		# Intel XL710 Ethernet 40Gb VF driver
336179343Syongariif_jme_load="NO"		# JMicron JMC250 Gigabit/JMC260 Fast Ethernet
337218815Sdangerif_lagg_load="NO"		# lagg(4) devices
338158569Smariusif_le_load="NO"			# AMD Am7900 LANCE and Am79C9xx PCnet
339166005Smaximif_lge_load="NO"		# Level 1 LXT1001 NetCellerator PCI Gigabit
340166005Smaxim				# Ethernet
341177990Sweongyoif_malo_load="NO"		# Marvell Libertas 88W8335 802.11 wireless
342177990Sweongyo				# adapter
343165145Syongariif_msk_load="NO"		# Marvell/SysKonnect Yukon II Gigabit Ethernet
344161449Sbruefferif_mxge_load="NO"		# Myricom Myri10GE 10Gb Ethernet
345161286Sbruefferif_my_load="NO"			# Myson PCI Fast Ethernet
346161448Sbruefferif_nfe_load="NO"		# NVIDIA nForce MCP Networking Adapter
347161286Sbruefferif_nge_load="NO"		# National Semiconductor PCI Gigabit Ethernet
348148817Skrionif_nve_load="NO"		# NVIDIA nForce MCP Networking Adapter
349177693Sbruefferif_nxge_load="NO"		# Neterion Xframe 10Gb Ethernet
350209466Sbrucecif_patm_load="NO"		# IDT77252 ATM
351106335Sminiif_pcn_load="NO"		# AMD PCnet PCI
352177693Sbruefferif_ral_load="NO"		# Ralink Technology wireless
353135986Sruif_re_load="NO"			# RealTek 8139C+/8169/8169S/8110S
35455017Swpaulif_rl_load="NO"			# RealTek 8129/8139
355148817Skrionif_rue_load="NO"		# RealTek RTL8150 USB to Fast Ethernet
356209466Sbrucecif_rum_load="NO"		# Ralink Technology USB 802.11a/b/g wireless
357209466Sbrucecif_run_load="NO"		# Ralink Technology USB 802.11a/g/n wireless
358182912Sjhbif_sbni_load="NO"		# Granch SBNI12 leased line adapters
35954019Sdcsif_sf_load="NO"			# Adaptec Duralink PCI (AIC-6915 "starfire")
360207630Sdelphijif_sge_load="NO"		# Silicon Integrated Systems SiS 190/191
36154019Sdcsif_sis_load="NO"		# Silicon Integrated Systems SiS 900/7016
362161286Sbruefferif_sk_load="NO"			# SysKonnect SK-984x series PCI Gigabit Ethernet
363106330Sminiif_sn_load="NO"			# SMC 91Cxx
364161286Sbruefferif_ste_load="NO"		# Sundance Technologies ST201 Fast Ethernet
365161286Sbruefferif_stge_load="NO"		# Sundance/Tamarack TC9021 Gigabit Ethernet
36654019Sdcsif_ti_load="NO"			# Alteon Networks Tigon 1 and Tigon 2
36754019Sdcsif_tl_load="NO"			# Texas Instruments TNETE100 ("ThunderLAN")
368161286Sbruefferif_tx_load="NO"			# SMC 83c17x Fast Ethernet
369106335Sminiif_txp_load="NO"		# 3Com 3XP Typhoon/Sidewinder (3CR990)
370135986Sruif_vge_load="NO"		# VIA VT6122 PCI Gigabit Ethernet
371216829Syongariif_vte_load="NO"		# DM&P Vortex86 RDC R6040 Fast Ethernet
372190789Sweongyoif_uath_load="NO"		# Atheros USB wireless for AR5005UG & AR5005UX
373148817Skrionif_udav_load="NO"		# Davicom DM9601 USB Ethernet
374181581Sweongyoif_upgt_load="NO"		# Conexant/Intersil PrismGT USB wireless
375177693Sbruefferif_ural_load="NO"		# Ralink Technology USB wireless
376187614Sweongyoif_urtw_load="NO"		# Realtek 8187L USB wireless
37754019Sdcsif_vr_load="NO"			# VIA Rhine I and Rhine II
378106330Sminiif_vx_load="NO"			# 3Com 3C590 family
37954019Sdcsif_wb_load="NO"			# Winbond W89C840F
38055992Swpaulif_wi_load="NO"			# WaveLAN/IEEE 802.11 wireless NICs
381177693Sbruefferif_wpi_load="NO"		# Intel 3945ABG Wireless LAN IEEE 802.11
382106330Sminiif_xe_load="NO"			# Xircom CreditCard PCMCIA
38354019Sdcsif_xl_load="NO"			# 3Com Etherlink XL (3c900, 3c905, 3c905B)
384316130Sngiesfxge_load="NO"			# Solarflare 10Gb Ethernet adapter driver
385209466Sbrucecutopia_load="NO"		# ATM PHY driver
38647175Sdcs
387293293Sdteske
38847175Sdcs##############################################################
38974212Sjhb###  Netgraph modules  #######################################
39074212Sjhb##############################################################
39174212Sjhb
39274212Sjhbng_UI_load="NO"			# UI netgraph node type
39374212Sjhbng_async_load="NO"		# asynchronous framing netgraph node type
39474212Sjhbng_bpf_load="NO"		# Berkeley packet filter netgraph node type
39574212Sjhbng_bridge_load="NO"		# Ethernet bridging netgraph node type
39674212Sjhbng_cisco_load="NO"		# Cisco HDLC protocol netgraph node type
39774212Sjhbng_echo_load="NO"		# Netgraph echo node type
398135986Srung_eiface_load="NO"		# generic Ethernet interface netgraph node type
399135986Srung_etf_load="NO"		# Ethertype filtering netgraph node type
40074212Sjhbng_ether_load="NO"		# Ethernet netgraph node type
401135986Srung_fec_load="NO"		# netgraph Fast EtherChannel node
40274212Sjhbng_frame_relay_load="NO"	# frame relay netgraph node type
403135986Srung_gif_load="NO"		# generic tunnel interface netgraph node type
404135986Srung_gif_demux_load="NO"		# demultiplexer for packets from ng_gif(4) nodes
40574212Sjhbng_hole_load="NO"		# Netgraph discard node type
406135986Srung_hub_load="NO"		# packet distribution netgraph node type
40774212Sjhbng_iface_load="NO"		# interface Netgraph node type
408135986Srung_ip_input_load="NO"		# netgraph IP input node type
40974212Sjhbng_ksocket_load="NO"		# kernel socket netgraph node type
410135986Srung_l2tp_load="NO"		# L2TP protocol netgraph node type
41174212Sjhbng_lmi_load="NO"		# frame relay LMI protocol netgraph node type
412166005Smaximng_mppc_load="NO"		# Microsoft MPPC/MPPE compression and
413166005Smaxim				# encryption netgraph node type
414166004Smaximng_netflow_load="NO"		# Cisco's NetFlow netgraph node type
41574212Sjhbng_one2many_load="NO"		# packet multiplexing netgraph node type
41674212Sjhbng_ppp_load="NO"		# PPP protocol netgraph node type
41774212Sjhbng_pppoe_load="NO"		# RFC 2516 PPPOE protocol netgraph node type
41874212Sjhbng_pptpgre_load="NO"		# PPTP GRE protocol netgraph node type
41974212Sjhbng_rfc1490_load="NO"		# RFC 1490 netgraph node type
42074212Sjhbng_socket_load="NO"		# Netgraph socket node type
421166005Smaximng_split_load="NO"		# netgraph node to separate incoming and
422166005Smaxim				# outgoing flows
423135986Srung_sppp_load="NO"		# sppp netgraph node type
42474212Sjhbng_tee_load="NO"		# Netgraph ``tee'' node type
425166005Smaximng_tty_load="NO"		# Netgraph node type that is also a line
426166005Smaxim				# discipline
42774212Sjhbng_vjc_load="NO"		# Van Jacobsen compression netgraph node type
428135986Srung_vlan_load="NO"		# IEEE 802.1Q VLAN tagging netgraph node type
42974212Sjhb
430293293Sdteske
43174212Sjhb##############################################################
43274212Sjhb###  Sound modules  ##########################################
43374212Sjhb##############################################################
43474212Sjhb
435132248Stanimurasound_load="NO"			# Digital sound subsystem
43674212Sjhbsnd_ad1816_load="NO"		# ad1816
437135986Srusnd_als4000_load="NO"		# als4000
438152979Sariffsnd_atiixp_load="NO"		# atiixp
43974212Sjhbsnd_cmi_load="NO"		# cmi
440135986Srusnd_cs4281_load="NO"		# cs4281
44174212Sjhbsnd_csa_load="NO"		# csa
44274212Sjhbsnd_ds1_load="NO"		# ds1
44374212Sjhbsnd_emu10k1_load="NO" 		# Creative Sound Blaster Live
444160709Sachesnd_emu10kx_load="NO" 		# Creative SoundBlaster Live! and Audigy
445161286Sbrueffersnd_envy24_load="NO"		# VIA Envy24
446162890Snetchildsnd_envy24ht_load="NO"		# VIA Envy24HT
447135986Srusnd_es137x_load="NO"		# es137x
44874212Sjhbsnd_ess_load="NO"		# ess
44974212Sjhbsnd_fm801_load="NO"		# fm801
450162934Sariffsnd_hda_load="NO"		# Intel High Definition Audio (Controller)
45188253Sjimsnd_ich_load="NO"		# Intel ICH
45274212Sjhbsnd_maestro_load="NO"		# Maestro
45374212Sjhbsnd_maestro3_load="NO"		# Maestro3
45474212Sjhbsnd_mss_load="NO"		# Mss
45574212Sjhbsnd_neomagic_load="NO"		# Neomagic
456135986Srusnd_sb16_load="NO"		# Sound Blaster 16
457135986Srusnd_sb8_load="NO"		# Sound Blaster Pro
45874212Sjhbsnd_sbc_load="NO"		# Sbc
45974212Sjhbsnd_solo_load="NO"		# Solo
460162890Snetchildsnd_spicds_load="NO"		# SPI codecs
46174212Sjhbsnd_t4dwave_load="NO"		# t4dwave
462102011Sorionsnd_via8233_load="NO"		# via8233
46374212Sjhbsnd_via82c686_load="NO"		# via82c686
464135986Srusnd_vibes_load="NO"		# vibes
465107175Sdcssnd_driver_load="NO"		# All sound drivers
46674212Sjhb
467293293Sdteske
46874212Sjhb##############################################################
46953243Sn_hibma###  USB modules  ############################################
47053243Sn_hibma##############################################################
47153243Sn_hibma
47253548Sn_hibmausb_load="NO"			# USB subsystem
47359895Sn_hibmaudbp_load="NO"			# USB double bulk pipe host 2 host cables
47453548Sn_hibmaugen_load="NO"			# USB generic device, if all else fails ...
475209466Sbrucecucycom_load="NO"		# Cyprus USB serial adapters
47691609Salfredufm_load="NO"			# Fm Radio
47753548Sn_hibmauhid_load="NO"			# Human Interface Devices
47853548Sn_hibmaukbd_load="NO"			# Keyboard
47953548Sn_hibmaulpt_load="NO"			# Printer
48053548Sn_hibmaums_load="NO"			# Mouse
48153548Sn_hibmaumass_load="NO"			# Mass Storage Devices
482209466Sbrucecumct_load="NO"			# Magic Control Technology USB-RS232
48367955Sn_hibmaumodem_load="NO"		# Modems
484209466Sbrucecuplcom_load="NO"		# Prolific USB serial adapters
485209466Sbrucecurio_load="NO"			# Rio MP3 players
486209466Sbrucecuvisor_load="NO"		# PalmOS based PDAs
48755162Swpaulif_aue_load="NO"		# ADMtek USB ethernet
488115054Smurrayif_axe_load="NO"		# ASIX Electronics AX88172 USB ethernet
489209466Sbrucecif_cdce_load="NO"		# Ethernet over USB (CDC)
49055944Swpaulif_cue_load="NO"		# CATC USB ethernet
49155429Swpaulif_kue_load="NO"		# Kawasaki LSI USB ethernet
492209466Sbrucecif_rae_load="NO"		# Realtek RTL8150 USB adapter.
493177990Sweongyoif_rum_load="NO"		# Ralink USB 802.11 wireless adapter
494209466Sbrucecif_uath_load="NO"		# Atheros AR5523 wireless adapter
495209466Sbrucecif_run_load="NO"		# Ralink USB 802.11 wireless adapter
496177990Sweongyoif_ural_load="NO"		# Ralink RT2500USB 802.11 wireless adapter
497177990Sweongyoif_zyd_load="NO"		# ZyDAS ZD1211(B) USB 802.11 wireless adapter
498135986Srusnd_uaudio_load="NO"		# USB audio
49953243Sn_hibma
500293293Sdteske
50153243Sn_hibma##############################################################
50244603Sdcs###  Other modules  ##########################################
50344603Sdcs##############################################################
50444603Sdcs
505209466Sbrucecaio_load="NO"			# Asynchronous I/O
50647890Srogerbktr_load="NO"			# Brooktree Bt848/Bt878 TV/Video Capture Card
50761757Smjacobispfw_load="NO"			# Qlogic ISP Firmware
50874212Sjhbagp_load="NO"			# agp module
50974263Sjhbaccf_data_load="NO"		# Wait for data accept filter
510192247Sbruefferaccf_dns_load="NO"		# Wait for full DNS request accept filter
51174263Sjhbaccf_http_load="NO"		# Wait for full HTTP request accept filter
512209466Sbrucecppi_load="NO"			# Interface to ppbus parallel 'geek' port
513209466Sbrucecpps_load="NO"			# Pulse per second devices
514209466Sbrucecpuc_load="NO"			# PCI "Universal" Communications driver
51565689Smarkmrandom_load="NO"		# Random device
516128280Scpercivaspeaker_load="NO"		# AT speaker module
517181297Srpaulocoretemp_load="NO"		# Intel Core CPU temperature monitor
518209466Sbrucecvkbd_load="NO"			# Virtual AT keyboard interface
519209466Sbrucecvpd_load="NO"			# Vital Product Data kernel interface
520209466Sbrucecvpo_load="NO"			# Parallel to SCSI interface driver
521189872Sdchaginamdtemp_load="NO"		# AMD K8/K10/K11 temperature monitor
522212861Snorktpm_load="NO"			# Trusted Platform Module
523232614Sbzwbwd_load="NO"			# Winbond watchdog
52444603Sdcs
525293293Sdteske
52644603Sdcs##############################################################
52786133Siwasaki###  ACPI settings  ##########################################
52886133Siwasaki##############################################################
52986133Siwasaki
53086133Siwasakiacpi_dsdt_load="NO"		# DSDT Overriding
53186133Siwasakiacpi_dsdt_type="acpi_dsdt"	# Don't change this
53286133Siwasakiacpi_dsdt_name="/boot/acpi_dsdt.aml"
53386133Siwasaki				# Override DSDT in BIOS by this file
534126453Sdesacpi_video_load="NO"		# Load the ACPI video extension driver
53586133Siwasaki
536293293Sdteske
53786133Siwasaki##############################################################
538293293Sdteske###  TrustedBSD MAC settings  ################################
539101187Srwatson##############################################################
540101187Srwatson
541101187Srwatsonmac_biba_load="NO"		# Biba MAC policy
542101187Srwatsonmac_bsdextended_load="NO"	# BSD/extended MAC policy
543101187Srwatsonmac_ifoff="NO"			# Interface silencing policy
544101187Srwatsonmac_mls_load="NO"		# MLS MAC policy
545101187Srwatsonmac_none_load="NO"		# Null MAC policy
546101187Srwatsonmac_partition_load="NO"		# Partition MAC policy
547101187Srwatsonmac_seeotheruids_load="NO"	# UID visbility MAC policy
548101187Srwatson
549293293Sdteske
550101187Srwatson##############################################################
55144603Sdcs###  Module loading syntax example  ##########################
55244603Sdcs##############################################################
55344603Sdcs
55444603Sdcs#module_load="YES"		# loads module "module"
55544603Sdcs#module_name="realname"		# uses "realname" instead of "module"
55644603Sdcs#module_type="type"		# passes "-t type" to load
55744603Sdcs#module_flags="flags"		# passes "flags" to the module
55844603Sdcs#module_before="cmd"		# executes "cmd" before loading the module
55944603Sdcs#module_after="cmd"		# executes "cmd" after loading the module
56044603Sdcs#module_error="cmd"		# executes "cmd" if load fails
561