in rc.M pe un slack:

# Initialize the networking hardware:
if [ -x /etc/rc.d/rc.inet1 ]; then
  . /etc/rc.d/rc.inet1
fi
# Initialize the hotplugging subsystem for PCI, Cardbus, and USB 
devices:
if [ -x /etc/rc.d/rc.hotplug -a -r /proc/modules ]; then
  # Don't run hotplug if 'nohotplug' was given at boot.
  if ! grep nohotplug /proc/cmdline 1> /dev/null 2> /dev/null ; then
    . /etc/rc.d/rc.hotplug start

Asta te trimite la rc.hotplug

  fi
fi
# Start networking daemons:
if [ -x /etc/rc.d/rc.inet2 ]; then
  . /etc/rc.d/rc.inet2
else
  # Start the system logger.  Normally this is started by
  # rc.inet2 because /usr might be mounted via NFS.
  if [ -x /etc/rc.d/rc.syslog ]; then
    . /etc/rc.d/rc.syslog start
  fiif [ -f /etc/init.d/functions ]; then
        . /etc/init.d/functions
elif [ -f /etc/rc.d/init.d/functions ]; then
        . /etc/rc.d/init.d/functions
fi

in rc.hotplug:

case "$1" in
    start|restart|status)
        for RC in /etc/hotplug/*.rc
        do
            $RC $1
        done
        touch /var/lock/subsys/hotplug
        ;;
    stop)
        for RC in /etc/hotplug/*.rc
        do
            $RC stop
        done
        rm -f /var/lock/subsys/hotplug
        ;;

    *)
    echo $"Usage: $0 {start|stop|restart|status}"
    exit 1
    ;;
esac

fi

concluzia.. mergi pe unde te trimit scripturile de intializare si o sa-l 
gasesti cu siguranta.
:)

On Tuesday 01 July 2003 15:14, you wrote:
> eu spun ca e in kernel , adica .. daca era modul gaseam io de unde
> se incarca (scriptu mamii lui)
> ideea e ca, alta posibilitate nu am decat sa recompile nu ?
> adica sa pierd timp inutil la o instalare de rutina ?
> cool :)
>
> Sebastian Petrescu said:
> >     I. Esti sigur ca e modul si ca nu e compilat kernelul cu suportul
> > ala ? I.a. Daca e sigur un modul unul din scripturile de
> > intializare ti-l incarca. Daca nu e nici rc.modules nici
> > rc.netdevice nu stiu care e scriptul cu pricina. Il cauti, il
> > gasesti si il pui sa nu-ti mai incarce modulul respectiv
> >     I.b. Daca nu e modul si e in kernel recompileaza kernelul
> >
> > --
> > Sebastian Petrescu
> > Network and System Engineer
> > http://www.serghei.net

-- 
Sebastian Petrescu
Network and System Engineer
http://www.serghei.net

Raspunde prin e-mail lui