summaryrefslogtreecommitdiffstats
path: root/sys/boot/forth/loader.conf
blob: b38c642a464f0d30cd97efb936ca47ae1cf3b7d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
# This is loader.conf - a file full of useful variables that you can
# set to change the default load behavior of your system. You should
# not edit this file!  Put any overrides into one of the
# loader_conf_files instead and you will be able to update these
# defaults later without spamming your local configuration information.
#
# All arguments must be in double quotes.
#
#	$Id: loader.conf,v 1.1 1999/03/09 14:06:55 dcs Exp $

##############################################################
###  Basic configuration options  ############################
##############################################################

exec=".( Loading /boot/defaults/loader.conf ) cr"

kernel="/kernel"
kernel_options=""

userconfig_script_load="NO"
userconfig_script_name="/boot/kernel.conf"
userconfig_script_type="userconfig_script"

loader_conf_files="/boot/loader.conf /boot/loader.conf.local"

verbose_loading="NO"		# Set to YES for verbose loader output


##############################################################
###  Splash screen configuration  ############################
##############################################################

splash_bmp_load="NO"		# Set this to YES if you want splash screen!
vesa_load="NO"			# Set this to YES to load the vesa module
bitmap_load="NO"		# Set this to YES if you want splash screen!
bitmap_name="/boot/splash.bmp"	# Set this to the name of the bmp file
bitmap_type="splash_image_data"


##############################################################
###  Loader settings  ########################################
##############################################################

#autoboot_delay="10"	# Delay in seconds before autobooting
#bootfile="/kernel,/kernel.old"	# Set the default boot file set
#console="vidconsole"	# Set the current console
#currdev="disk1s1a"	# Set the current device
#module_path="/modules"	# Set the module search path
#prompt="\\${currdev}"	# Set the command prompt
#root_disk_unit="0"	# Force the root disk unit number
#rootdev="disk1s1a"	# Set the root filesystem


##############################################################
###  Kernel settings  ########################################
##############################################################

#boot_askname="NO"	# Prompt the user for the name of the root device
#boot_ddb="NO"		# Instructs the kernel to start in the DDB debugger
#boot_gdb="NO"		# Selects gdb-remote mode for the kernel debugger
#boot_single="NO"	# Start system in single-user mode
#boot_userconfig="NO"	# Run kernel's interactive device configuration program
#boot_verbose="NO"	# Causes extra debugging information to be printed


##############################################################
###  Kernel tunables  ########################################
##############################################################

#kern.ipc.nmbclusters=""	# Set the number of mbuf clusters
#kern.vm.kmem.size=""		# Sets the size of kernel memory (bytes)
#machdep.pccard.pcic_irq="0"	# Assigns PCCARD controller IRQ (0=polled)
#net.inet.tcp.tcbhashsize=""	# Set the value of TCBHASHSIZE


##############################################################
###  Filesystem and related modules  #########################
##############################################################

# Filesystems

cd9660_load="NO"		# ISO 9660 filesystem
coda_load="NO"			# CODA filesystem
fdesc_load="NO"			# Filedescriptors filesystem
kernfs_load="NO"		# Kernel filesystem
mfs_load="NO"			# Memory filesystem
msdos_load="NO"			# FAT-12/16/32
nfs_load="NO"			# NFS
null_load="NO"			# Null filesystem
portal_load="NO"		# Portal filesystem
procfs_load="NO"		# Process filesystem
umap_load="NO"			# User-id map filesystem
union_load="NO"			# Union filesystem

# Related stuff

atapi_load="NO"			# ATAPI-compatible IDE devices
ccd_load="NO"			# Concatenated disk driver
vinum_load="NO"			# Concatenated/mirror/raid driver
vn_load="NO"			# Vnode driver
wcd_load="NO"			# CD-ROM


##############################################################
###  Screen saver modules  ###################################
##############################################################

# This is best done in rc.conf

screensave_load="NO"		# Set to YES to load a screensaver module
screensave_name="green_saver"	# Set to the name of the screensaver module


##############################################################
###  Emulation modules  ######################################
##############################################################

fpu_load="NO"			# Floating point emulation
gnufpu_load="NO"		# GNU floating point emulation
ibcs2_load="NO"			# IBCS2 (SCO) emulation
ibcs2_coff_load="NO"
linux_load="NO"			# Linux emulation


##############################################################
###  Networking modules  #####################################
##############################################################

if_disc_load="NO"		# Discard device
if_ppp_load="NO"		# Kernel ppp
if_sl_load="NO"			# SLIP
if_tun_load="NO"		# Tunnel driver (user process ppp)
ipfw_load="NO"			# Firewall


##############################################################
###  Other modules  ##########################################
##############################################################

joy_load="NO"			# Joystick
lkm_load="NO"			# LKM
pcic_load="NO"			# PCMCIA


##############################################################
###  Module loading syntax example  ##########################
##############################################################

#module_load="YES"		# loads module "module"
#module_name="realname"		# uses "realname" instead of "module"
#module_type="type"		# passes "-t type" to load
#module_flags="flags"		# passes "flags" to the module
#module_before="cmd"		# executes "cmd" before loading the module
#module_after="cmd"		# executes "cmd" after loading the module
#module_error="cmd"		# executes "cmd" if load fails

OpenPOWER on IntegriCloud