Package: base (???)
It should be possible to specify options in /etc/modules.
Example for my Mitsumi-Drive:
mcdx mcdx=0x300,11
which sould call "modprobe" with the command-line
"modprobe mcdx mcdx=0x300,11".
BTW, the loop
echo -n "Loading modules:"
for module in $modules
do
echo -n " $module"
done
echo
could (?) be replaced by
echo "Loading modules: $modules"
Winfried