archboot/etc/load-modules.sh
Alexander Baldeck 2a150b1dca Initial revision
2007-02-22 22:46:50 +00:00

38 lines
860 B
Bash
Executable file

#! /bin/sh
# Implement blacklisting for udev-loaded modules
# Includes module checking
# - Aaron Griffin & Tobias Powalowski for Archlinux
[ $# -ne 1 ] && exit 1
if [ -f /proc/cmdline ]; then
for cmd in $(cat /proc/cmdline); do
case $cmd in
*=*) eval $cmd ;;
esac
done
fi
# get the real names from modaliases
i="$(/bin/moddeps $1)"
# add disablemodules= from commandline to blacklist
k="$(/bin/replace "${disablemodules}" ',')"
j="$(/bin/replace "${k}" '-' '_')"
# add blacklisted modules from /tmp/.ide-blacklist
if [ -s /tmp/.ide-blacklist ]; then
for l in $(sort -u /tmp/.ide-blacklist); do
j="$j $l"
done
fi
if [ "${j}" != "" ] ; then
for n in ${i}; do
for o in ${j}; do
if [ "$n" = "$o" ]; then
exit 1
fi
done
done
fi
/bin/modprobe $1 > /dev/null 2>&1
# vim: set et ts=4: