Reading old articles??????
Try /etc/modprobe.conf you can also add the module loading to someplace like /etc/rc.d/rc.local if need be.
Code:
$ cat /etc/rc.d/rc.local
#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.
touch /var/lock/subsys/local
# I2C adapter drivers
modprobe i2c-sis96x
# I2C chip drivers
# modprobe eeprom
# sleep 2 # optional
/usr/bin/sensors -s # recommended
# My system tweaks
/usr/sbin/ntpdate -u 128.10.252.7
/sbin/modprobe evdev
/sbin/modprobe -r snd_intel8x0m
Added a couple of examples (above) starting at the comment; # My system tweaks
Code:
$ cat /etc/modprobe.conf
alias net-pf-10 off
alias eth0 sis900
alias eth1 orinoco_cs
alias eth2 prism54
# I2C module options
alias char-major-89 i2c-dev
alias snd-card-0 snd-intel8x0
options snd-card-0 index=0
install snd-intel8x0 /sbin/modprobe --ignore-install snd-intel8x0 && /usr/sbin/alsactl restore >/dev/null 2>&1 || :
remove snd-intel8x0 { /usr/sbin/alsactl store >/dev/null 2>&1 || : ; }; /sbin/modprobe -r --ignore-remove snd-intel8x0
alias usb-controller ehci-hcd
alias usb-controller1 ohci-hcd