Posté par tomsc .
En réponse au message Udev.
Évalué à 1.
Que voulez vous dire par "une distro"?
Voici mon sysinit :
#!/bin/sh
do_command (){
echo -n "running $@ "
$@
if [ $? -ne 0 ]
then
echo " [ERROR]"
else
echo " [SUCCESS]"
fi
}
do_command mount -t proc none /proc
do_command mount -t sysfs none /sys
do_command mount -t tmpfs none /tmp
do_command ifconfig eth0 172.16.4.1
#démarrage de udev et hotplug
do_command /sbin/udevd --daemon
do_command /etc/init.d/hotplug start
do_command modprobe usb-storage
do_command modprobe ucb1400_core
#chargement des modules FAT
do_command modprobe fat
do_command modprobe vfat
#chargement des caractères internationaux
do_command modprobe nls_cp437
do_command modprobe crc-ccitt
Comme erreur relatif à ca au boot j'ai simplement quelque chose sur hotplug mais je pense que les périphériques devraient se créer meme sans hotplug...
[^] # Re: Les bases
Posté par tomsc . En réponse au message Udev. Évalué à 1.
Voici mon sysinit :
#!/bin/sh
do_command (){
echo -n "running $@ "
$@
if [ $? -ne 0 ]
then
echo " [ERROR]"
else
echo " [SUCCESS]"
fi
}
do_command mount -t proc none /proc
do_command mount -t sysfs none /sys
do_command mount -t tmpfs none /tmp
do_command ifconfig eth0 172.16.4.1
#démarrage de udev et hotplug
do_command /sbin/udevd --daemon
do_command /etc/init.d/hotplug start
do_command modprobe usb-storage
do_command modprobe ucb1400_core
#chargement des modules FAT
do_command modprobe fat
do_command modprobe vfat
#chargement des caractères internationaux
do_command modprobe nls_cp437
do_command modprobe crc-ccitt
Comme erreur relatif à ca au boot j'ai simplement quelque chose sur hotplug mais je pense que les périphériques devraient se créer meme sans hotplug...