View Single Post
JeffElkins's Avatar
Posts: 273 | Thanked: 15 times | Joined on Oct 2007
#3
This is a bit geeky, but I've done two things to accomplish this:

1. I created a script that loaded the modules on boot:
Code:
insmod /modulelocation/module1.ko
insmod /modulelocation/module2.ko
insmod /modulelocation/module3.ko
2. I compiled modprobe for my system and made a script that used it:

Code:
modprobe module1.ko
modprobe module2.ko
modprobe module3.ko
Either script is located in /etc/init.d. Once there, it's symlinked in /etc/rc2.d with a name like S20scriptname so it's started on boot.

Sorry, I don't recall the exact modules, I'm in post-update repository hell
__________________
My Mac Mini runs Kubuntu
 

The Following User Says Thank You to JeffElkins For This Useful Post: