| Commit | Line | Data |
|---|---|---|
| 116b7e3c MD |
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: src/sys/boot/forth/loader.conf,v 1.72 2003/07/01 01:03:32 brueffer Exp $ | |
| 10 | # $DragonFly: src/sys/boot/forth/loader.conf,v 1.34 2008/09/02 17:21:15 dillon Exp $ | |
| 11 | ||
| 12 | ############################################################## | |
| 13 | ### Basic configuration options ############################ | |
| 14 | ############################################################## | |
| 15 | ||
| a96b5bf1 MD |
16 | # WARNING: Do not set default_kernel here, it is set conditionally |
| 17 | # in dloader.menu | |
| 116b7e3c MD |
18 | kernel="kernel" |
| 19 | bootfile="kernel" # Kernel name (possibly absolute path) | |
| 20 | kernel_options="" | |
| 21 | ||
| 22 | userconfig_script_load="NO" | |
| 23 | userconfig_script_name="/boot/kernel.conf" | |
| 24 | userconfig_script_type="userconfig_script" | |
| 25 | ||
| 116b7e3c MD |
26 | |
| 27 | ############################################################## | |
| 28 | ### Splash screen configuration ############################ | |
| 29 | ############################################################## | |
| 30 | ||
| 31 | splash_bmp_load="NO" # Set this to YES for bmp splash screen! | |
| 32 | splash_pcx_load="NO" # Set this to YES for pcx splash screen! | |
| 33 | vesa_load="NO" # Set this to YES to load the vesa module | |
| 34 | bitmap_load="NO" # Set this to YES if you want splash screen! | |
| 35 | bitmap_name="splash.bmp" # Set this to the name of the bmp or pcx file | |
| 36 | bitmap_type="splash_image_data" # and place it on the module_path | |
| 37 | ||
| 38 | ||
| 39 | ############################################################## | |
| 40 | ### Loader settings ######################################## | |
| 41 | ############################################################## | |
| 42 | ||
| 43 | #autoboot_delay="10" # Delay in seconds before autobooting | |
| 44 | #fred_disable="NO" # Turn Fred's boot menu on and off | |
| b5ef8da1 | 45 | #fred_on_left="NO" # Show Fred on left side of menu |
| 116b7e3c MD |
46 | #loader_color="NO" # Set to YES for a color version of Fred |
| 47 | #console="vidconsole" # Set the current console | |
| 48 | #currdev="disk1s1a" # Set the current device | |
| 49 | #module_path=";modules" # Set the module search path | |
| b5ef8da1 | 50 | #prompt="OK" # Set the command prompt |
| 116b7e3c MD |
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 | # The following boot_ variables are enabled | |
| 60 | # by setting them to any value. | |
| 61 | #boot_askname="" # Prompt the user for the name of the root device | |
| 62 | #boot_ddb="" # Instructs the kernel to start in the DDB debugger | |
| 63 | #boot_gdb="" # Selects gdb-remote mode for the kernel debugger | |
| 64 | #boot_single="" # Start system in single-user mode | |
| 65 | #boot_userconfig="" # Run kernel's interactive device configuration program | |
| 66 | #boot_verbose="" # Causes extra debugging information to be printed | |
| 67 | #init_path="/sbin/init:/sbin/oinit:/sbin/init.bak" | |
| 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 physical memory. See loader(8) | |
| 77 | #kern.dfldsiz="" # Set the initial data size limit | |
| 78 | #kern.dflssiz="" # Set the initial stack size limit | |
| 79 | #kern.hz="100" # Set the kernel interval timer rate | |
| 80 | #kern.maxbcache="" # Set the max buffer cache KVA storage | |
| 81 | #kern.maxdsiz="" # Set the max data size | |
| 82 | #kern.maxfiles="" # Set the sys. wide open files limit | |
| 83 | #kern.maxproc="" # Set the maximum # of processes | |
| 84 | #kern.maxssiz="" # Set the max stack size | |
| 85 | #kern.maxswzone="" # Set the max swmeta KVA storage | |
| 86 | #kern.maxtsiz="" # Set the max text size | |
| 87 | #kern.maxusers="32" # Set size of various static tables | |
| 88 | #kern.nbuf="" # Set the number of buffer headers | |
| 89 | #kern.ncallout="" # Set the maximum # of timer events | |
| 90 | #kern.sgrowsiz="" # Set the amount to grow stack | |
| 91 | #kern.cam.scsi_delay="2000" # Delay (in ms) before probing SCSI | |
| 92 | #kern.ipc.maxsockets="" # Set the maximum number of sockets avaliable | |
| 93 | #kern.ipc.nmbclusters="" # Set the number of mbuf clusters | |
| 94 | #kern.ipc.nmbufs="" # Set the maximum number of mbufs | |
| 95 | #kern.vm.kmem.size="" # Sets the size of kernel memory (bytes) | |
| 96 | #net.inet.tcp.tcbhashsize="" # Set the value of TCBHASHSIZE | |
| 97 | #vfs.root.mountfrom="" # Specify root partition in a way the | |
| 6c7a982d SW |
98 | # kernel understands. You can specify a |
| 99 | # semicolon separated device list which will | |
| 100 | # be tried. | |
| 116b7e3c MD |
101 | #debug.ktr.verbose="1" # Enable console dump of KTR events |
| 102 | #net.graph.maxalloc="128" # Maximum number of queue items to allocate | |
| 103 | #net.graph.ngqfreemax="64" # Maximum number of free queue items to cache | |
| 104 | ||
| 105 | ||
| 106 | ############################################################## | |
| 107 | ### Filesystem and related modules ######################### | |
| 108 | ############################################################## | |
| 109 | ||
| 110 | # Filesystems | |
| 111 | ||
| 112 | cd9660_load="NO" # ISO 9660 filesystem | |
| 113 | ext2fs_load="NO" # ext2 filesystem | |
| 114 | fdesc_load="NO" # Filedescriptors filesystem | |
| 115 | mfs_load="NO" # Memory filesystem | |
| 116 | msdos_load="NO" # FAT-12/16/32 | |
| 117 | nfs_load="NO" # NFS | |
| 118 | ntfs_load="NO" # NTFS | |
| 119 | null_load="NO" # Null filesystem | |
| 120 | nwfs_load="NO" # NetWare volume | |
| 121 | portal_load="NO" # Portal filesystem | |
| 122 | procfs_load="NO" # Process filesystem | |
| 123 | smbfs_load="NO" # SMB/CIFS | |
| 124 | udf_load="NO" # UDF filesystem | |
| 125 | ||
| 126 | # Related stuff | |
| 127 | ||
| 128 | ccd_load="NO" # Concatenated disk driver | |
| 129 | vinum_load="NO" # Concatenated/mirror/raid driver | |
| 130 | md_load="NO" # Memory disk driver (vnode/swap/malloc) | |
| 131 | ||
| 132 | ||
| 133 | ############################################################## | |
| 134 | ### Screen saver modules ################################### | |
| 135 | ############################################################## | |
| 136 | ||
| 137 | # This is best done in rc.conf | |
| 138 | ||
| 139 | screensave_load="NO" # Set to YES to load a screensaver module | |
| 140 | screensave_name="green_saver" # Set to the name of the screensaver module | |
| 141 | ||
| 142 | ||
| 143 | ############################################################## | |
| 144 | ### Emulation modules ###################################### | |
| 145 | ############################################################## | |
| 146 | ||
| 147 | linux_load="NO" # Linux emulation | |
| 148 | ||
| 149 | ||
| 150 | ############################################################## | |
| 151 | ### Networking modules ##################################### | |
| 152 | ############################################################## | |
| 153 | ||
| 154 | if_disc_load="NO" # Discard device | |
| 155 | if_ef_load="NO" # pseudo-device providing support for multiple ethernet frame types | |
| 156 | if_faith_load="NO" # IPv6-to-IPv4 TCP relay capturing interface | |
| 157 | if_gif_load="NO" # generic tunnel interface | |
| 158 | if_gre_load="NO" # encapsulating network device | |
| 159 | if_ppp_load="NO" # Kernel ppp | |
| 160 | if_sl_load="NO" # SLIP | |
| 161 | if_stf_load="NO" # 6to4 tunnel interface | |
| 162 | if_tap_load="NO" # Ethernet tunnel software network interface | |
| 163 | if_tun_load="NO" # Tunnel driver (user process ppp) | |
| 164 | if_vlan_load="NO" # IEEE 802.1Q VLAN network interface | |
| 165 | ipfw_load="NO" # Firewall | |
| 166 | pf_load="NO" # OpenBSD's packet filter | |
| 167 | ||
| 168 | ||
| 169 | ############################################################## | |
| 170 | ### Networking drivers ##################################### | |
| 171 | ############################################################## | |
| 172 | ||
| 173 | miibus_load="NO" # miibus support, needed for some drivers | |
| 174 | if_acx_load="NO" # TI ACX100/ACX111 802.11 wireless NICs | |
| 175 | if_an_load="NO" # Aironet 4500/4800 802.11 wireless NICs | |
| 176 | if_ar_load="NO" # Digi SYNC/570i | |
| 177 | if_ath_load="NO" # Atheros 802.11 wireless NICs | |
| 178 | if_bce_load="NO" # Broadcom BCM5706/BCM5708 gigabit ethernet | |
| 179 | if_bfe_load="NO" # Broadcom BCM4401 PCI ethernet | |
| 180 | if_bge_load="NO" # Broadcom BCM570x PCI gigabit ethernet | |
| 181 | if_bwi_load="NO" # Broadcom BCM430x/4318 IEEE 802.11b/g wireless | |
| 182 | if_dc_load="NO" # DEC/Intel 21143 and various workalikes | |
| 183 | if_ed_load="NO" # National Semiconductor DS8390/WD83C690 ethernet | |
| 184 | if_em_load="NO" # Intel(R) PRO/1000 gigabit ethernet | |
| 185 | if_ep_load="NO" # 3Com Etherlink III (3c5x9) | |
| 186 | if_et_load="NO" # Agere ET1310 10/100/Gigabit ethernet | |
| 187 | if_fwe_load="NO" # Ethernet emulation driver for FireWire | |
| 188 | if_fxp_load="NO" # Intel EtherExpress PRO/100B (82557, 82558) | |
| 189 | if_iwi_load="NO" # Intel(R) PRO/Wireless 2200BG/2915ABG MiniPCI | |
| 190 | if_iwl_load="NO" # Intel(R) PRO/Wireless 2100 MiniPCI | |
| 191 | if_lge_load="NO" # Level 1 LXT1001 NetCellerator PCI gigabit ethernet | |
| 192 | if_lnc_load="NO" # AMD Lance/PCnet Ethernet | |
| 193 | if_msk_load="NO" # Marvell/SysKonnect Yukon II Gigabit Ethernet | |
| 194 | if_my_load="NO" # Myson PCI fast ethernet | |
| 195 | #if_ndis_load="NO" # NDIS miniport driver wrapper | |
| 196 | if_nfe_load="NO" # NVIDIA nForce MCP 10/100/Gigabit ethernet | |
| 197 | if_nge_load="NO" # National Semiconductor PCI gigabit ethernet | |
| 198 | if_pcn_load="NO" # AMD PCnet PCI | |
| 199 | if_ral_load="NO" # Ralink Technology 802.11 wireless NICs | |
| 200 | if_re_load="NO" # RealTek 8139C+/8169/816xS/811xS/8101E | |
| 201 | if_rl_load="NO" # RealTek 8129/8139 | |
| 202 | if_rtw_load="NO" # Realtek RTL8180L IEEE 802.11b wireless NICs | |
| 203 | if_sbni_load="NO" # Granch SBNI12 leased line adapters | |
| 204 | if_sbsh_load="NO" # Granch SBNI16 SHDSL modem | |
| 205 | if_sf_load="NO" # Adaptec Duralink PCI (AIC-6915 "starfire") | |
| 206 | if_sis_load="NO" # Silicon Integrated Systems SiS 900/7016 | |
| 207 | if_sk_load="NO" # SysKonnect SK-984x series PCI gigabit ethernet | |
| 208 | if_sr_load="NO" # synchronous RISCom/N2 / WANic 400/405 | |
| 209 | if_ste_load="NO" # Sundance Technologies ST201 fast ethernet | |
| 210 | if_stge_load="NO" # Sundance/Tamarack TC9021 gigabit ethernet | |
| 211 | if_ti_load="NO" # Alteon Networks Tigon 1 and Tigon 2 | |
| 212 | if_tl_load="NO" # Texas Instruments TNETE100 ("ThunderLAN") | |
| 213 | if_tx_load="NO" # SMC 83c17x fast ethernet | |
| 214 | if_txp_load="NO" # 3Com 3XP Typhoon/Sidewinder (3CR990) | |
| 215 | if_vge_load="NO" # VIA VT6122 PCI gigabit ethernet | |
| 216 | if_vr_load="NO" # VIA Rhine I and Rhine II | |
| 217 | if_vx_load="NO" # 3Com 3C590 family | |
| 218 | if_wb_load="NO" # Winbond W89C840F | |
| 219 | if_wi_load="NO" # WaveLAN/IEEE 802.11 wireless NICs | |
| 220 | if_xe_load="NO" # Xircom CreditCard PCMCIA | |
| 221 | if_xl_load="NO" # 3Com Etherlink XL (3c900, 3c905, 3c905B) | |
| 222 | ||
| 223 | ||
| 224 | ############################################################## | |
| 225 | ### Netgraph modules ####################################### | |
| 226 | ############################################################## | |
| 227 | ||
| 228 | ng_UI_load="NO" # UI netgraph node type | |
| 229 | ng_async_load="NO" # asynchronous framing netgraph node type | |
| 230 | ng_bpf_load="NO" # Berkeley packet filter netgraph node type | |
| 231 | ng_bridge_load="NO" # Ethernet bridging netgraph node type | |
| 232 | ng_cisco_load="NO" # Cisco HDLC protocol netgraph node type | |
| 233 | ng_echo_load="NO" # Netgraph echo node type | |
| 234 | ng_ether_load="NO" # Ethernet netgraph node type | |
| 235 | ng_frame_relay_load="NO" # frame relay netgraph node type | |
| 236 | ng_hole_load="NO" # Netgraph discard node type | |
| 237 | ng_iface_load="NO" # interface Netgraph node type | |
| 238 | ng_ksocket_load="NO" # kernel socket netgraph node type | |
| 239 | ng_lmi_load="NO" # frame relay LMI protocol netgraph node type | |
| 240 | ng_mppc_load="NO" # Microsoft MPPC/MPPE compression and encryption netgraph node type | |
| 241 | ng_one2many_load="NO" # packet multiplexing netgraph node type | |
| 242 | ng_ppp_load="NO" # PPP protocol netgraph node type | |
| 243 | ng_pppoe_load="NO" # RFC 2516 PPPOE protocol netgraph node type | |
| 244 | ng_pptpgre_load="NO" # PPTP GRE protocol netgraph node type | |
| 245 | ng_rfc1490_load="NO" # RFC 1490 netgraph node type | |
| 246 | ng_socket_load="NO" # Netgraph socket node type | |
| 247 | ng_tee_load="NO" # Netgraph ``tee'' node type | |
| 248 | ng_tty_load="NO" # Netgraph node type that is also a line discipline | |
| 249 | ng_vjc_load="NO" # Van Jacobsen compression netgraph node type | |
| 250 | ||
| 251 | ||
| 252 | ############################################################## | |
| 253 | ### Sound modules ########################################## | |
| 254 | ############################################################## | |
| 255 | ||
| 256 | sound_load="NO" # Digital sound subsystem | |
| 257 | snd_ad1816_load="NO" # ad1816 | |
| 258 | snd_als4000_load="NO" # als4000 | |
| 259 | snd_atiixp_load="NO" # atiixp | |
| 260 | snd_cmi_load="NO" # cmi | |
| 261 | snd_csa_load="NO" # csa | |
| 262 | snd_cs4281_load="NO" # cs4281 | |
| 263 | snd_ds1_load="NO" # ds1 | |
| 264 | snd_emu10k1_load="NO" # Creative Sound Blaster Live | |
| 265 | snd_ess_load="NO" # ess | |
| 266 | snd_es137x_load="NO" # es137x | |
| 267 | snd_fm801_load="NO" # fm801 | |
| 268 | snd_hda_load="NO" # hda | |
| 269 | snd_ich_load="NO" # Intel ICH | |
| 270 | snd_maestro_load="NO" # Maestro | |
| 271 | snd_maestro3_load="NO" # Maestro3 | |
| 272 | snd_mss_load="NO" # Mss | |
| 273 | snd_neomagic_load="NO" # Neomagic | |
| 274 | snd_sbc_load="NO" # Sbc | |
| 275 | snd_sb8_load="NO" # Sound Blaster Pro | |
| 276 | snd_sb16_load="NO" # Sound Blaster 16 | |
| 277 | snd_solo_load="NO" # Solo | |
| 278 | snd_t4dwave_load="NO" # t4dwave | |
| 279 | snd_via8233_load="NO" # via8233 | |
| 280 | snd_via82c686_load="NO" # via82c686 | |
| 281 | snd_driver_load="NO" # All sound drivers | |
| 282 | ||
| 283 | ||
| 284 | ############################################################## | |
| 285 | ### USB modules ############################################ | |
| 286 | ############################################################## | |
| 287 | ||
| 288 | usb_load="NO" # USB subsystem | |
| 289 | ugen_load="NO" # USB generic device, if all else fails ... | |
| 290 | ufm_load="NO" # Fm Radio | |
| 291 | uhid_load="NO" # Human Interface Devices | |
| 292 | ukbd_load="NO" # Keyboard | |
| 293 | ulpt_load="NO" # Printer | |
| 294 | ums_load="NO" # Mouse | |
| 295 | umass_load="NO" # Mass Storage Devices | |
| 296 | umodem_load="NO" # Modems | |
| 297 | uscanner_load="NO" # Scanners | |
| 298 | if_aue_load="NO" # ADMtek USB ethernet | |
| 299 | if_axe_load="NO" # ASIX Electronics AX88172 USB ethernet | |
| 300 | if_cue_load="NO" # CATC USB ethernet | |
| 301 | if_kue_load="NO" # Kawasaki LSI USB ethernet | |
| 302 | if_rue_load="NO" # RealTek RTL8150 USB fast ethernet | |
| 303 | if_rum_load="NO" # Ralink RT2501USB/RT2601USB 802.11 wireless NICs | |
| 304 | if_ural_load="NO" # Ralink RT2500USB 802.11 wireless NICs | |
| 305 | snd_uaudio_load="NO" # USB audio | |
| 306 | ||
| 307 | ||
| 308 | ############################################################## | |
| 309 | ### Other modules ########################################## | |
| 310 | ############################################################## | |
| 311 | ||
| 312 | bktr_load="NO" # Brooktree Bt848/Bt878 TV/Video Capture Card | |
| 313 | ispfw_load="NO" # Qlogic ISP Firmware | |
| 314 | agp_load="NO" # agp module | |
| 315 | accf_data_load="NO" # Wait for data accept filter | |
| 316 | accf_http_load="NO" # Wait for full HTTP request accept filter | |
| 317 | random_load="NO" # Random device | |
| 318 | atspeaker_load="NO" # AT speaker module | |
| 319 | ||
| 320 | ||
| 321 | ############################################################## | |
| 322 | ### ACPI settings ########################################## | |
| 323 | ############################################################## | |
| 324 | ||
| 325 | acpi_dsdt_load="NO" # DSDT Overriding | |
| 326 | acpi_dsdt_type="acpi_dsdt" # Don't change this | |
| 327 | acpi_dsdt_name="/boot/acpi_dsdt.aml" | |
| 328 | # Override DSDT in BIOS by this file | |
| 329 | ||
| 330 | ||
| 331 | ############################################################## | |
| 332 | ### Module loading syntax example ########################## | |
| 333 | ############################################################## | |
| 334 | ||
| 335 | #module_load="YES" # loads module "module" | |
| 336 | #module_name="realname" # uses "realname" instead of "module" | |
| 337 | #module_type="type" # passes "-t type" to load | |
| 338 | #module_flags="flags" # passes "flags" to the module | |
| 339 | #module_before="cmd" # executes "cmd" before loading the module | |
| 340 | #module_after="cmd" # executes "cmd" after loading the module | |
| 341 | #module_error="cmd" # executes "cmd" if load fails |