Ainsi parlait Keld Jørn Simonsen :
[..]
> > /etc/module.conf only maps modules to a given major/minor number, it
> > doesn't triggers module loading.
> > If you want some modules to be loaded automatically at start-up, use
> > /etc/modules instead.
>
> Well, I also have something in /etc/rc.local - should that be ok, or
> is /etc/modules better? What I had there is:
>
> # for LM_sensors
> # I2C adapter drivers
> modprobe i2c-i801
> modprobe i2c-isa
> # I2C chip drivers
> modprobe eeprom
> modprobe w83781d

I always prefer to use configuration file rather than modify scripts, as
1) they are meant for :-)
2) rpm upgrade will remove a modified script, but keep intact a modifed 
configuration file

So, i think it is preferable to just list you modules in /etc/modules, this 
way:
# for LM_sensors
# I2C adapter drivers
i2c-i801
i2c-isa

# I2C chip drivers
eeprom
w83781d
-- 
Guillaume Rousse <[EMAIL PROTECTED]>
GPG key http://lis.snv.jussieu.fr/~rousse/gpgkey.html

Reply via email to