On Wed, December 8, 2004 2:13 am, Reg Clemens said: > With the old modules.conf syntax, one could say > > add below <module> <list of modules> > or add above <module> <list of modules> > > How does one do that with the new modprobe.conf syntax > using install? > > Hey Reg, If you need to force a module dependency that isn't handled automatically then you can make a custom install command for your module. >From "man modprobe.conf" : install fred /sbin/modprobe barney; /sbin/modprobe --ignore-install fred To cause the barney module to be loaded before the fred module. Cheers, Sean