in rcS (tc-config from v1.2) would be nice to have:
if [ -n "$LAPTOP" ]; then                                                       
   modprobe ac && modprobe battery
{       
   modprobe yenta_socket || modprobe i82365       
   /sbin/udevtrigger
   /etc/init.d/laptop-mode start
} >/dev/null 2>&1 &                                  
   echo " ${GREEN}Laptop options enabled (AC,Battery, & PCMCIA).${NORMAL}"
fi
instead of
if [ -n "$LAPTOP" ]; then                                                                            
   modprobe ac && modprobe battery                         
   modprobe yenta_socket >/dev/null 2>&1 || modprobe i82365 >/dev/null 2>&1 
   /sbin/udevtrigger 2>/dev/null >/dev/null &                                                     
   echo " ${GREEN}Laptop options enabled (AC,Battery, & PCMCIA).${NORMAL}"                        
fi