A cette heure, voilà où j'en suis :
Je suppose que le problème se situe au niveau de udev puisque le boot bloque sur cette séquence si la carte pcmcia est enclenchée et que le boot se poursuit normalement si je la déclenche.
La question alors est peut-être de modifier le fichier /etc/udev/rules.d/60-pcmcia.rules ? Je dis ça au flanc, tapez pas si je dis une connerie !
Voici ce qu'indique ce fichier :
# PCMCIA devices:
#
### Already done by the general modprobe rule
# modprobe $modalias loads all possibly appropriate modules
ACTION=="add", SUBSYSTEM=="pcmcia", ENV{MODALIAS}=="?*", \
RUN+="/sbin/modprobe $env{MODALIAS}"
# Very few CIS firmware entries (which we use for matching)
# are so broken that we need to read out random bytes of it
# instead of the manufactor, card or product ID. Then the
# matching is done in userspace.
ACTION=="add", SUBSYSTEM=="pcmcia", ENV{MODALIAS}=="?*", \
RUN+="/sbin/pcmcia-check-broken-cis"
# However, the "weak" matching by func_id is only allowed _after_ modprobe
# returns, so that "strong" matches have a higher priority.
ACTION=="add", SUBSYSTEM=="pcmcia", ENV{MODALIAS}=="?*", ATTR{allow_func_id_match}="1"
# PCMCIA sockets:
#
# modprobe the pcmcia bus module so that 16-bit PCMCIA devices work
ACTION=="add", SUBSYSTEM=="pcmcia_socket", \
RUN+="/sbin/modprobe pcmcia"
# if this is a PCMCIA socket which needs a resource database,
# pcmcia-socket-startup sets it up
ACTION=="add", SUBSYSTEM=="pcmcia_socket", \
RUN+="/sbin/pcmcia-socket-startup"
Ca parle à quelqu'un ? Il y a une ligne à décommenter ou à ajouter ? Merci de votre aide...