- Timestamp:
- Nov 19, 2007, 4:40:32 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.2.5/mindi/rootfs/sbin/init
r1815 r1816 79 79 openvt 7 /bin/sh /sbin/wait-for-petris 80 80 openvt 8 /usr/bin/tail -f $LOGFILE 81 openvt S0 /bin/sh82 openvt S1 /bin/sh83 81 } 84 82 … … 175 173 else 176 174 LogIt "OK, I am falling back to floppy mode." 3 175 LogIt "(You lay not have the right drivers" 3 176 LogIt "to support the hardware on which we are running)" 3 177 177 LogIt "That means you'll have to copy the data disk images from" 3 178 178 LogIt "the CD/hard disk/whatever to physical 1.44MB disks and" 3 … … 304 304 fi 305 305 create_dev_makedev 306 echo $PKLVL > /proc/sys/kernel/printk307 306 # May avoid shell error messages 308 307 chmod 644 /dev/tty* 309 udevsettle 308 if [ -x /sbin/udevsettle ]; then 309 /sbin/udevsettle 310 fi 311 echo $PKLVL > /proc/sys/kernel/printk 310 312 } 311 313 … … 366 368 [ -d /proc/bus/usb ] && ! grep -q /proc/bus/usb /proc/mounts && mount -t usbfs none /proc/bus/usb 367 369 if [ -e "/tmp/USE-UDEV" ] ; then 368 if [ -f usbhid.ko ||-f usbhid.ko.gz ]; then370 if [ -f usbhid.ko ] || [ -f usbhid.ko.gz ]; then 369 371 modprobe -q usbhid 370 372 fi 371 if [ -f uhcd_hci.ko ||-f uhcd_hci.ko.gz ]; then373 if [ -f uhcd_hci.ko ] || [ -f uhcd_hci.ko.gz ]; then 372 374 modprobe -q uhcd_hci 373 375 fi 374 376 else 375 377 if [ -f uhcd_hci.ko ]; then 376 insmod uhcd_hci.ko *378 insmod uhcd_hci.ko 377 379 fi 378 380 if [ -f usbhid.ko ]; then 379 insmod usbcore.ko *380 insmod usbhid.ko *381 insmod usbcore.ko 382 insmod usbhid.ko 381 383 fi 382 384 fi
Note:
See TracChangeset
for help on using the changeset viewer.