summaryrefslogtreecommitdiffstats
path: root/main/openrc/hwdrivers.initd
blob: 3d0ebf12b5abd946c8bd27141b1d19de92bb0a18 (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
#!/sbin/runscript

depend() {
	need sysfs dev
	before checkfs fsck
	after modloop
	keyword novserver
}

# Load hardware drivers
start() {
	# check for boot option "nocoldplug"
	if get_bootparam noautodetect; then
		ewarn "Autodetection of hardware disabled from boot cmdline"
		return 0
	fi
	

	ebegin "Loading hardware drivers"
	find /sys -name modalias | xargs sort -u \
		| xargs modprobe -a 2> /dev/null
	# we run it twice so we detect all devices
	find /sys -name modalias | xargs sort -u \
		| xargs modprobe -a 2> /dev/null
	eend 0
}