Deleted Added
full compact
loader.conf (95531) loader.conf (97201)
1# This is loader.conf - a file full of useful variables that you can
2# set to change the default load behavior of your system. You should
3# not edit this file! Put any overrides into one of the
4# loader_conf_files instead and you will be able to update these
5# defaults later without spamming your local configuration information.
6#
7# All arguments must be in double quotes.
8#
1# This is loader.conf - a file full of useful variables that you can
2# set to change the default load behavior of your system. You should
3# not edit this file! Put any overrides into one of the
4# loader_conf_files instead and you will be able to update these
5# defaults later without spamming your local configuration information.
6#
7# All arguments must be in double quotes.
8#
9# $FreeBSD: head/sys/boot/forth/loader.conf 95531 2002-04-26 22:32:15Z wes $
9# $FreeBSD: head/sys/boot/forth/loader.conf 97201 2002-05-24 02:28:58Z gordon $
10
11##############################################################
12### Basic configuration options ############################
13##############################################################
14
15exec=".( Loading /boot/defaults/loader.conf ) cr"
16
17kernel="kernel" # /boot sub-directory containing kernel and modules
18bootfile="kernel" # Kernel name (possibly absolute path)
19kernel_options=""
20
21userconfig_script_load="NO"
22userconfig_script_name="/boot/kernel.conf"
23userconfig_script_type="userconfig_script"
24
10
11##############################################################
12### Basic configuration options ############################
13##############################################################
14
15exec=".( Loading /boot/defaults/loader.conf ) cr"
16
17kernel="kernel" # /boot sub-directory containing kernel and modules
18bootfile="kernel" # Kernel name (possibly absolute path)
19kernel_options=""
20
21userconfig_script_load="NO"
22userconfig_script_name="/boot/kernel.conf"
23userconfig_script_type="userconfig_script"
24
25loader_conf_files="/boot/device.hints /boot/loader.conf /boot/loader.conf.local /boot/nextboot.conf"
25loader_conf_files="/boot/device.hints /boot/loader.conf /boot/loader.conf.local"
26nextboot_conf="/boot/nextboot.conf"
27nextboot_enable="NO"
26
27verbose_loading="NO" # Set to YES for verbose loader output
28
29
30##############################################################
31### Splash screen configuration ############################
32##############################################################
33
34splash_bmp_load="NO" # Set this to YES for bmp splash screen!
35splash_pcx_load="NO" # Set this to YES for pcx splash screen!
36vesa_load="NO" # Set this to YES to load the vesa module
37bitmap_load="NO" # Set this to YES if you want splash screen!
38bitmap_name="splash.bmp" # Set this to the name of the bmp or pcx file
39bitmap_type="splash_image_data" # and place it on the module_path
40
41
42##############################################################
43### Loader settings ########################################
44##############################################################
45
46#autoboot_delay="10" # Delay in seconds before autobooting
47#console="vidconsole" # Set the current console
48#currdev="disk1s1a" # Set the current device
49module_path="/boot/kernel;/boot/modules;/modules" # Set the module search path
50#prompt="\\${interpret}" # Set the command prompt
51#root_disk_unit="0" # Force the root disk unit number
52#rootdev="disk1s1a" # Set the root filesystem
53
54
55##############################################################
56### Kernel settings ########################################
57##############################################################
58
59#boot_askname="NO" # Prompt the user for the name of the root device
60#boot_ddb="NO" # Instructs the kernel to start in the DDB debugger
61#boot_gdb="NO" # Selects gdb-remote mode for the kernel debugger
62#boot_single="NO" # Start system in single-user mode
63#boot_userconfig="NO" # Run kernel's interactive device configuration program
64#boot_verbose="NO" # Causes extra debugging information to be printed
65#init_path="/sbin/init:/sbin/oinit:/sbin/init.bak:/stand/sysinstall"
66 # Sets the list of init candidates
67#dumpdev="ad0s1b" # Set device for crash dumps
68
69
70##############################################################
71### Kernel tunables ########################################
72##############################################################
73
74#hw.physmem="1G" # Limit phyiscal memory. See loader(8)
75#kern.maxusers="32" # Set size of various static tables
76#kern.ipc.nmbclusters="" # Set the number of mbuf clusters
77#kern.vm.kmem.size="" # Sets the size of kernel memory (bytes)
78#machdep.pccard.pcic_irq="0" # Assigns PCCARD controller IRQ (0=polled)
79#net.inet.tcp.tcbhashsize="" # Set the value of TCBHASHSIZE
80#vfs.root.mountfrom="" # Specify root partition in a way the
81 # kernel understands
82#debug.ktr.cpumask="0xf" # Bitmask of CPUs to enable KTR on
83#debug.ktr.mask="0x1200" # Bitmask of KTR events to enable
84#debug.ktr.verbose="1" # Enable console dump of KTR events
85
86
87##############################################################
88### Filesystem and related modules #########################
89##############################################################
90
91# Filesystems
92
93cd9660_load="NO" # ISO 9660 filesystem
94coda_load="NO" # CODA filesystem
95fdescfs_load="NO" # Filedescriptors filesystem
96msdosfs_load="NO" # FAT-12/16/32
97nfs_load="NO" # NFS
98ntfs_load="NO" # NTFS
99nullfs_load="NO" # Null filesystem
100portalfs_load="NO" # Portal filesystem
101procfs_load="NO" # Process filesystem
102umapfs_load="NO" # User-id map filesystem
103unionfs_load="NO" # Union filesystem
104
105# Related stuff
106
107ccd_load="NO" # Concatenated disk driver
108vinum_load="NO" # Concatenated/mirror/raid driver
109md_load="NO" # Memory disk driver (vnode/swap/malloc)
110
111
112##############################################################
113### Screen saver modules ###################################
114##############################################################
115
116# This is best done in rc.conf
117
118screensave_load="NO" # Set to YES to load a screensaver module
119screensave_name="green_saver" # Set to the name of the screensaver module
120
121
122##############################################################
123### Emulation modules ######################################
124##############################################################
125
126fpu_load="NO" # Floating point emulation
127gnufpu_load="NO" # GNU floating point emulation
128ibcs2_load="NO" # IBCS2 (SCO) emulation
129ibcs2_coff_load="NO"
130linux_load="NO" # Linux emulation
131svr4_load="NO" # SystemV R4 emulation
132streams_load="NO" # System V streams module
133
134
135##############################################################
136### Networking modules #####################################
137##############################################################
138
139if_disc_load="NO" # Discard device
140if_ppp_load="NO" # Kernel ppp
141if_sl_load="NO" # SLIP
142if_tun_load="NO" # Tunnel driver (user process ppp)
143ipfw_load="NO" # Firewall
144
145
146##############################################################
147### Networking drivers #####################################
148##############################################################
149
150miibus_load="NO" # miibus support, needed for some drivers
151if_an_load="NO" # Aironet 4500/4800 802.11 wireless NICs
152if_dc_load="NO" # DEC/Intel 21143 and various workalikes
153if_fxp_load="NO" # Intel EtherExpress PRO/100B (82557, 82558)
154if_rl_load="NO" # RealTek 8129/8139
155if_sf_load="NO" # Adaptec Duralink PCI (AIC-6915 "starfire")
156if_sis_load="NO" # Silicon Integrated Systems SiS 900/7016
157if_sk_load="NO" # SysKonnect SK-984x series PCI gigabit ethernet
158if_ti_load="NO" # Alteon Networks Tigon 1 and Tigon 2
159if_tl_load="NO" # Texas Instruments TNETE100 ("ThunderLAN")
160if_vr_load="NO" # VIA Rhine I and Rhine II
161if_wb_load="NO" # Winbond W89C840F
162if_wi_load="NO" # WaveLAN/IEEE 802.11 wireless NICs
163if_wx_load="NO" # Intel Gigabit Ethernet
164if_xl_load="NO" # 3Com Etherlink XL (3c900, 3c905, 3c905B)
165
166##############################################################
167### Netgraph modules #######################################
168##############################################################
169
170ng_UI_load="NO" # UI netgraph node type
171ng_async_load="NO" # asynchronous framing netgraph node type
172ng_bpf_load="NO" # Berkeley packet filter netgraph node type
173ng_bridge_load="NO" # Ethernet bridging netgraph node type
174ng_cisco_load="NO" # Cisco HDLC protocol netgraph node type
175ng_echo_load="NO" # Netgraph echo node type
176ng_ether_load="NO" # Ethernet netgraph node type
177ng_frame_relay_load="NO" # frame relay netgraph node type
178ng_hole_load="NO" # Netgraph discard node type
179ng_iface_load="NO" # interface Netgraph node type
180ng_ksocket_load="NO" # kernel socket netgraph node type
181ng_lmi_load="NO" # frame relay LMI protocol netgraph node type
182ng_mppc_load="NO" # Microsoft MPPC/MPPE compression and encryption netgraph node type
183ng_one2many_load="NO" # packet multiplexing netgraph node type
184ng_ppp_load="NO" # PPP protocol netgraph node type
185ng_pppoe_load="NO" # RFC 2516 PPPOE protocol netgraph node type
186ng_pptpgre_load="NO" # PPTP GRE protocol netgraph node type
187ng_rfc1490_load="NO" # RFC 1490 netgraph node type
188ng_socket_load="NO" # Netgraph socket node type
189ng_tee_load="NO" # Netgraph ``tee'' node type
190ng_tty_load="NO" # Netgraph node type that is also a line discipline
191ng_vjc_load="NO" # Van Jacobsen compression netgraph node type
192
193##############################################################
194### Sound modules ##########################################
195##############################################################
196
197snd_pcm_load="NO" # Digital sound subsystem
198snd_ad1816_load="NO" # ad1816
199snd_cmi_load="NO" # cmi
200snd_csa_load="NO" # csa
201snd_cs4281_load="NO" # cs4281
202snd_ds1_load="NO" # ds1
203snd_emu10k1_load="NO" # Creative Sound Blaster Live
204snd_ess_load="NO" # ess
205snd_es137x_load="NO" # es137x
206snd_fm801_load="NO" # fm801
207snd_ich_load="NO" # Intel ICH
208snd_maestro_load="NO" # Maestro
209snd_maestro3_load="NO" # Maestro3
210snd_mss_load="NO" # Mss
211snd_neomagic_load="NO" # Neomagic
212snd_sbc_load="NO" # Sbc
213snd_sb8_load="NO" # Sound Blaster Pro
214snd_sb16_load="NO" # Sound Blaster 16
215snd_solo_load="NO" # Solo
216snd_t4dwave_load="NO" # t4dwave
217snd_via82c686_load="NO" # via82c686
218snd_load="NO" # All sound drivers
219
220##############################################################
221### USB modules ############################################
222##############################################################
223
224usb_load="NO" # USB subsystem
225udbp_load="NO" # USB double bulk pipe host 2 host cables
226ugen_load="NO" # USB generic device, if all else fails ...
227ufm_load="NO" # Fm Radio
228uhid_load="NO" # Human Interface Devices
229ukbd_load="NO" # Keyboard
230ulpt_load="NO" # Printer
231ums_load="NO" # Mouse
232umass_load="NO" # Mass Storage Devices
233umodem_load="NO" # Modems
234uscanner_load="NO" # Scanners
235if_aue_load="NO" # ADMtek USB ethernet
236if_cue_load="NO" # CATC USB ethernet
237if_kue_load="NO" # Kawasaki LSI USB ethernet
238
239##############################################################
240### Other modules ##########################################
241##############################################################
242
243bktr_load="NO" # Brooktree Bt848/Bt878 TV/Video Capture Card
244ispfw_load="NO" # Qlogic ISP Firmware
245agp_load="NO" # agp module
246accf_data_load="NO" # Wait for data accept filter
247accf_http_load="NO" # Wait for full HTTP request accept filter
248random_load="NO" # Random device
249atspeaker_load="NO" # AT speaker module
250
251##############################################################
252### ACPI settings ##########################################
253##############################################################
254
255acpi_dsdt_load="NO" # DSDT Overriding
256acpi_dsdt_type="acpi_dsdt" # Don't change this
257acpi_dsdt_name="/boot/acpi_dsdt.aml"
258 # Override DSDT in BIOS by this file
259
260##############################################################
261### Module loading syntax example ##########################
262##############################################################
263
264#module_load="YES" # loads module "module"
265#module_name="realname" # uses "realname" instead of "module"
266#module_type="type" # passes "-t type" to load
267#module_flags="flags" # passes "flags" to the module
268#module_before="cmd" # executes "cmd" before loading the module
269#module_after="cmd" # executes "cmd" after loading the module
270#module_error="cmd" # executes "cmd" if load fails
271
28
29verbose_loading="NO" # Set to YES for verbose loader output
30
31
32##############################################################
33### Splash screen configuration ############################
34##############################################################
35
36splash_bmp_load="NO" # Set this to YES for bmp splash screen!
37splash_pcx_load="NO" # Set this to YES for pcx splash screen!
38vesa_load="NO" # Set this to YES to load the vesa module
39bitmap_load="NO" # Set this to YES if you want splash screen!
40bitmap_name="splash.bmp" # Set this to the name of the bmp or pcx file
41bitmap_type="splash_image_data" # and place it on the module_path
42
43
44##############################################################
45### Loader settings ########################################
46##############################################################
47
48#autoboot_delay="10" # Delay in seconds before autobooting
49#console="vidconsole" # Set the current console
50#currdev="disk1s1a" # Set the current device
51module_path="/boot/kernel;/boot/modules;/modules" # Set the module search path
52#prompt="\\${interpret}" # Set the command prompt
53#root_disk_unit="0" # Force the root disk unit number
54#rootdev="disk1s1a" # Set the root filesystem
55
56
57##############################################################
58### Kernel settings ########################################
59##############################################################
60
61#boot_askname="NO" # Prompt the user for the name of the root device
62#boot_ddb="NO" # Instructs the kernel to start in the DDB debugger
63#boot_gdb="NO" # Selects gdb-remote mode for the kernel debugger
64#boot_single="NO" # Start system in single-user mode
65#boot_userconfig="NO" # Run kernel's interactive device configuration program
66#boot_verbose="NO" # Causes extra debugging information to be printed
67#init_path="/sbin/init:/sbin/oinit:/sbin/init.bak:/stand/sysinstall"
68 # Sets the list of init candidates
69#dumpdev="ad0s1b" # Set device for crash dumps
70
71
72##############################################################
73### Kernel tunables ########################################
74##############################################################
75
76#hw.physmem="1G" # Limit phyiscal memory. See loader(8)
77#kern.maxusers="32" # Set size of various static tables
78#kern.ipc.nmbclusters="" # Set the number of mbuf clusters
79#kern.vm.kmem.size="" # Sets the size of kernel memory (bytes)
80#machdep.pccard.pcic_irq="0" # Assigns PCCARD controller IRQ (0=polled)
81#net.inet.tcp.tcbhashsize="" # Set the value of TCBHASHSIZE
82#vfs.root.mountfrom="" # Specify root partition in a way the
83 # kernel understands
84#debug.ktr.cpumask="0xf" # Bitmask of CPUs to enable KTR on
85#debug.ktr.mask="0x1200" # Bitmask of KTR events to enable
86#debug.ktr.verbose="1" # Enable console dump of KTR events
87
88
89##############################################################
90### Filesystem and related modules #########################
91##############################################################
92
93# Filesystems
94
95cd9660_load="NO" # ISO 9660 filesystem
96coda_load="NO" # CODA filesystem
97fdescfs_load="NO" # Filedescriptors filesystem
98msdosfs_load="NO" # FAT-12/16/32
99nfs_load="NO" # NFS
100ntfs_load="NO" # NTFS
101nullfs_load="NO" # Null filesystem
102portalfs_load="NO" # Portal filesystem
103procfs_load="NO" # Process filesystem
104umapfs_load="NO" # User-id map filesystem
105unionfs_load="NO" # Union filesystem
106
107# Related stuff
108
109ccd_load="NO" # Concatenated disk driver
110vinum_load="NO" # Concatenated/mirror/raid driver
111md_load="NO" # Memory disk driver (vnode/swap/malloc)
112
113
114##############################################################
115### Screen saver modules ###################################
116##############################################################
117
118# This is best done in rc.conf
119
120screensave_load="NO" # Set to YES to load a screensaver module
121screensave_name="green_saver" # Set to the name of the screensaver module
122
123
124##############################################################
125### Emulation modules ######################################
126##############################################################
127
128fpu_load="NO" # Floating point emulation
129gnufpu_load="NO" # GNU floating point emulation
130ibcs2_load="NO" # IBCS2 (SCO) emulation
131ibcs2_coff_load="NO"
132linux_load="NO" # Linux emulation
133svr4_load="NO" # SystemV R4 emulation
134streams_load="NO" # System V streams module
135
136
137##############################################################
138### Networking modules #####################################
139##############################################################
140
141if_disc_load="NO" # Discard device
142if_ppp_load="NO" # Kernel ppp
143if_sl_load="NO" # SLIP
144if_tun_load="NO" # Tunnel driver (user process ppp)
145ipfw_load="NO" # Firewall
146
147
148##############################################################
149### Networking drivers #####################################
150##############################################################
151
152miibus_load="NO" # miibus support, needed for some drivers
153if_an_load="NO" # Aironet 4500/4800 802.11 wireless NICs
154if_dc_load="NO" # DEC/Intel 21143 and various workalikes
155if_fxp_load="NO" # Intel EtherExpress PRO/100B (82557, 82558)
156if_rl_load="NO" # RealTek 8129/8139
157if_sf_load="NO" # Adaptec Duralink PCI (AIC-6915 "starfire")
158if_sis_load="NO" # Silicon Integrated Systems SiS 900/7016
159if_sk_load="NO" # SysKonnect SK-984x series PCI gigabit ethernet
160if_ti_load="NO" # Alteon Networks Tigon 1 and Tigon 2
161if_tl_load="NO" # Texas Instruments TNETE100 ("ThunderLAN")
162if_vr_load="NO" # VIA Rhine I and Rhine II
163if_wb_load="NO" # Winbond W89C840F
164if_wi_load="NO" # WaveLAN/IEEE 802.11 wireless NICs
165if_wx_load="NO" # Intel Gigabit Ethernet
166if_xl_load="NO" # 3Com Etherlink XL (3c900, 3c905, 3c905B)
167
168##############################################################
169### Netgraph modules #######################################
170##############################################################
171
172ng_UI_load="NO" # UI netgraph node type
173ng_async_load="NO" # asynchronous framing netgraph node type
174ng_bpf_load="NO" # Berkeley packet filter netgraph node type
175ng_bridge_load="NO" # Ethernet bridging netgraph node type
176ng_cisco_load="NO" # Cisco HDLC protocol netgraph node type
177ng_echo_load="NO" # Netgraph echo node type
178ng_ether_load="NO" # Ethernet netgraph node type
179ng_frame_relay_load="NO" # frame relay netgraph node type
180ng_hole_load="NO" # Netgraph discard node type
181ng_iface_load="NO" # interface Netgraph node type
182ng_ksocket_load="NO" # kernel socket netgraph node type
183ng_lmi_load="NO" # frame relay LMI protocol netgraph node type
184ng_mppc_load="NO" # Microsoft MPPC/MPPE compression and encryption netgraph node type
185ng_one2many_load="NO" # packet multiplexing netgraph node type
186ng_ppp_load="NO" # PPP protocol netgraph node type
187ng_pppoe_load="NO" # RFC 2516 PPPOE protocol netgraph node type
188ng_pptpgre_load="NO" # PPTP GRE protocol netgraph node type
189ng_rfc1490_load="NO" # RFC 1490 netgraph node type
190ng_socket_load="NO" # Netgraph socket node type
191ng_tee_load="NO" # Netgraph ``tee'' node type
192ng_tty_load="NO" # Netgraph node type that is also a line discipline
193ng_vjc_load="NO" # Van Jacobsen compression netgraph node type
194
195##############################################################
196### Sound modules ##########################################
197##############################################################
198
199snd_pcm_load="NO" # Digital sound subsystem
200snd_ad1816_load="NO" # ad1816
201snd_cmi_load="NO" # cmi
202snd_csa_load="NO" # csa
203snd_cs4281_load="NO" # cs4281
204snd_ds1_load="NO" # ds1
205snd_emu10k1_load="NO" # Creative Sound Blaster Live
206snd_ess_load="NO" # ess
207snd_es137x_load="NO" # es137x
208snd_fm801_load="NO" # fm801
209snd_ich_load="NO" # Intel ICH
210snd_maestro_load="NO" # Maestro
211snd_maestro3_load="NO" # Maestro3
212snd_mss_load="NO" # Mss
213snd_neomagic_load="NO" # Neomagic
214snd_sbc_load="NO" # Sbc
215snd_sb8_load="NO" # Sound Blaster Pro
216snd_sb16_load="NO" # Sound Blaster 16
217snd_solo_load="NO" # Solo
218snd_t4dwave_load="NO" # t4dwave
219snd_via82c686_load="NO" # via82c686
220snd_load="NO" # All sound drivers
221
222##############################################################
223### USB modules ############################################
224##############################################################
225
226usb_load="NO" # USB subsystem
227udbp_load="NO" # USB double bulk pipe host 2 host cables
228ugen_load="NO" # USB generic device, if all else fails ...
229ufm_load="NO" # Fm Radio
230uhid_load="NO" # Human Interface Devices
231ukbd_load="NO" # Keyboard
232ulpt_load="NO" # Printer
233ums_load="NO" # Mouse
234umass_load="NO" # Mass Storage Devices
235umodem_load="NO" # Modems
236uscanner_load="NO" # Scanners
237if_aue_load="NO" # ADMtek USB ethernet
238if_cue_load="NO" # CATC USB ethernet
239if_kue_load="NO" # Kawasaki LSI USB ethernet
240
241##############################################################
242### Other modules ##########################################
243##############################################################
244
245bktr_load="NO" # Brooktree Bt848/Bt878 TV/Video Capture Card
246ispfw_load="NO" # Qlogic ISP Firmware
247agp_load="NO" # agp module
248accf_data_load="NO" # Wait for data accept filter
249accf_http_load="NO" # Wait for full HTTP request accept filter
250random_load="NO" # Random device
251atspeaker_load="NO" # AT speaker module
252
253##############################################################
254### ACPI settings ##########################################
255##############################################################
256
257acpi_dsdt_load="NO" # DSDT Overriding
258acpi_dsdt_type="acpi_dsdt" # Don't change this
259acpi_dsdt_name="/boot/acpi_dsdt.aml"
260 # Override DSDT in BIOS by this file
261
262##############################################################
263### Module loading syntax example ##########################
264##############################################################
265
266#module_load="YES" # loads module "module"
267#module_name="realname" # uses "realname" instead of "module"
268#module_type="type" # passes "-t type" to load
269#module_flags="flags" # passes "flags" to the module
270#module_before="cmd" # executes "cmd" before loading the module
271#module_after="cmd" # executes "cmd" after loading the module
272#module_error="cmd" # executes "cmd" if load fails
273