blob: 8f5d9d0778e9960a02c6381b51d2608ea916eca2 (
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
|
#!/bin/sh
# Do not continue for non-modular kernel - Bug #168322
[ ! -f /proc/modules ] && exit 0
if [ -e /dev/.udev_populate ]; then
# Enable verbose while called from udev-addon-start
. /dev/.udev_populate
if [ -c "${CONSOLE}" ]; then
# redirect stdin/out/err
exec <${CONSOLE} >${CONSOLE} 2>/${CONSOLE}
fi
fi
. /etc/init.d/functions.sh
MODPROBE=/sbin/modprobe
MODLIST=$("${MODPROBE}" -q -i --show-depends "${@}" 2>/dev/null \
| sed -e "s#^insmod /lib.*/\(.*\)\.ko.*#\1#g" -e 's|-|_|g')
# exit if you have no modules to load
[ -z "${MODLIST}" ] && exit 0
for m in ${MODLIST}; do
MODNAME=$m
done
# check for blacklisting
if [ -f /etc/modprobe.conf ]; then
if grep -q '^blacklist.*[[:space:]]'"${MODNAME}"'\([[:space:]]\|$\)' /etc/modprobe.conf; then
# module blacklisted
exit 0
fi
fi
# check if loaded
if ! grep -q "^${MODNAME}[[:space:]]" /proc/modules; then
# now do real loading
einfo " udev loading module ${MODNAME}"
exec "${MODPROBE}" -q "${@}"
fi
|