View | Details | Raw Unified | Return to bug 256240
Collapse All | Expand All

(-)b/libexec/rc/rc.conf (-1 / +1 lines)
Lines 45-51 ddb_config="/etc/ddb.conf" # ddb(8) config file. Link Here
45
devd_enable="YES" 	# Run devd, to trigger programs on device tree changes.
45
devd_enable="YES" 	# Run devd, to trigger programs on device tree changes.
46
devd_flags=""		# Additional flags for devd(8).
46
devd_flags=""		# Additional flags for devd(8).
47
devmatch_enable="YES"	# Demand load kernel modules based on device ids.
47
devmatch_enable="YES"	# Demand load kernel modules based on device ids.
48
devmatch_blacklist=""	# List of modules (w/o .ko) to exclude from devmatch.
48
devmatch_blacklist=""	# List of modules (with .ko) to exclude from devmatch.
49
#kld_list="" 		# Kernel modules to load after local disks are mounted
49
#kld_list="" 		# Kernel modules to load after local disks are mounted
50
kldxref_enable="YES"	# Build linker.hints files with kldxref(8).
50
kldxref_enable="YES"	# Build linker.hints files with kldxref(8).
51
kldxref_clobber="NO"	# Overwrite old linker.hints at boot.
51
kldxref_clobber="NO"	# Overwrite old linker.hints at boot.
(-)b/libexec/rc/rc.d/devmatch (-2 / +1 lines)
Lines 59-65 devmatch_start() Link Here
59
	# or drivers that have symbolic links that
59
	# or drivers that have symbolic links that
60
	# confuse devmatch by running it -n.
60
	# confuse devmatch by running it -n.
61
	# Finally, we filter out all items in the
61
	# Finally, we filter out all items in the
62
	# devmactch_blacklist.
62
	# devmatch_blacklist.
63
	devctl freeze
63
	devctl freeze
64
	x=$(echo ${devmatch_blacklist} | tr ' ' '#')
64
	x=$(echo ${devmatch_blacklist} | tr ' ' '#')
65
	for m in ${list}; do
65
	for m in ${list}; do
66
- 

Return to bug 256240