kumquat-buildroot/target/device/Atmel/atngw100/target_skeleton/etc/init.d/S10modules-init
2007-08-17 13:01:49 +00:00

22 lines
347 B
Bash
Executable File

#!/bin/sh
MODPROBE=/sbin/modprobe
echo -n "Probing modules: "
if [ ! -x "${MODPROBE}" -o ! -f "/etc/modules" ]; then
echo "missing"
exit 1
else
echo
fi
grep '^[^#]' "/etc/modules" | \
while read module args; do
[ "$module" ] || continue
if ${MODPROBE} $module $args; then
echo " $module loaded"
else
echo " $module failed"
fi
done