blob: af800d4d34b10d013a01fbcbcb07d039fe797925 (
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
|
#!/bin/ash
. /etc/rc.subr
start() {
if checkyesno ${modules_enable}; then
if [ ! -x "${modprobe_program}" -o ! -f "/etc/modules" ]; then
echo "Missing 'modprobe_program' program (${modprobe_program})"
exit 1
else
echo
fi
echo -n "Loading modules: "
grep '^[^#]' "/etc/modules" | \
while read module args; do
[ "$module" ] || continue
if ${modprobe_program} $module $args; then
echo -n "$module "
else
echo -n "$module=failed "
fi
done
echo ""
fi
}
stop() {
return 0
}
rc_run_command "$1"
|