aports/main/openrc/hwdrivers.initd
Natanael Copa 2d2ddf507b move core/* to main/
added maintainer to several packages as well
2009-07-23 18:24:11 +00:00

28 lines
542 B
Plaintext

#!/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
}