On Sat, Jun 11, 2005 at 07:03:01PM -0500, Dan McGhee wrote: > > I tried passing IRQ=11 in the /etc/sysconfig/modules file, but the > driver then didn't load.
You pass an IRQ to a driver in /etc/modprobe.conf on a 'options' line, if it is compiled as a module, or in the 'append' statement in lilo.conf, if it is compiled into the kernel (with grub, I don't know). options <drivername> <options> options <other-driver> <other-options> append="<drivername>=<options> <other-driver>=<other-options>" How exactly the options have to look like, and what options a driver takes, depends on the driver. It's in the kernel source 'Documentation' directory. Joern -- http://linuxfromscratch.org/mailman/listinfo/blfs-support FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
