tempestuous
Group: Members
Posts: 259
Joined: Aug. 2004 |
|
Posted: Feb. 03 2006,04:05 |
|
Autodetection of ISA devices is unreliable in Linux. So the correct thing to do is to manually specify the correct module to load at bootup as you suggest. In DSL's parent distribution, Debian, this would be a configuration file in /etc/modutils which is then appended to /etc/modules.conf by running "update modules". This would work with a HD install of DSL, but in a liveCD situation there's a problem because the modified /etc/modules.conf must be backed up, then restored at each bootup, and I think that this file is restored too late in the boot process to load the added modules.
So the best thing to do with DSL is add any extra commands you need to /opt/bootlocal.sh, then backup this file.
Your changes to /etc/network/interfaces are, again, very Debian-like. And running /etc/init.d/networking is overkill. All you should need to add to /opt/bootlocal.sh are these 2 lines -
modprobe 3c509 pump -i eth0
|