Jerry Geis wrote:
/ Is there a method to control module load order?
/>>/ />>/ I want to ensure that the e1000 module loads before the forcedeth driver. /
The following might work in /etc/modprobe.conf:
install forcedeth /sbin/modprobe e1000; /sbin/modprobe --ignore-install forcedeth
James Pearson
James - fantastic,
I tried this and it worked. Thanks!
Jerry