hi there,
you just implement an "if" with the command "uname" and everything is fine...
something like that..
Code:
#!/bin/sh
kernel=`uname -r`
if [ "$kernel" -eq "XXX" ]; then
modprobe $whatyouwant
fi
put that in your init scripts - sorry, i have no idea where they are in redhat - and it works..
regards
slackie1000