Changeset 1816 in MondoRescue for branches


Ignore:
Timestamp:
Nov 19, 2007, 4:40:32 PM (16 years ago)
Author:
Bruno Cornec
Message:

Fix syntax error

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.5/mindi/rootfs/sbin/init

    r1815 r1816  
    7979    openvt 7 /bin/sh /sbin/wait-for-petris
    8080    openvt 8 /usr/bin/tail -f $LOGFILE
    81     openvt S0 /bin/sh
    82     openvt S1 /bin/sh
    8381}
    8482
     
    175173    else
    176174        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
    177177        LogIt "That means you'll have to copy the data disk images from" 3
    178178        LogIt "the CD/hard disk/whatever to physical 1.44MB disks and" 3
     
    304304    fi
    305305    create_dev_makedev
    306     echo $PKLVL > /proc/sys/kernel/printk
    307306    # May avoid shell error messages
    308307    chmod 644 /dev/tty*
    309     udevsettle
     308    if [ -x /sbin/udevsettle ]; then
     309        /sbin/udevsettle
     310    fi
     311    echo $PKLVL > /proc/sys/kernel/printk
    310312}
    311313
     
    366368[ -d /proc/bus/usb ] && ! grep -q /proc/bus/usb /proc/mounts && mount -t usbfs none /proc/bus/usb
    367369if [ -e "/tmp/USE-UDEV" ] ; then
    368     if [ -f usbhid.ko || -f usbhid.ko.gz ]; then
     370    if [ -f usbhid.ko ] || [ -f usbhid.ko.gz ]; then
    369371        modprobe -q usbhid
    370372    fi
    371     if [ -f uhcd_hci.ko || -f uhcd_hci.ko.gz ]; then
     373    if [ -f uhcd_hci.ko ] || [ -f uhcd_hci.ko.gz ]; then
    372374        modprobe -q uhcd_hci
    373375    fi
    374376else
    375377    if [ -f uhcd_hci.ko ]; then
    376         insmod uhcd_hci.ko*
     378        insmod uhcd_hci.ko
    377379    fi
    378380    if [ -f usbhid.ko ]; then
    379         insmod usbcore.ko*
    380         insmod usbhid.ko*
     381        insmod usbcore.ko
     382        insmod usbhid.ko
    381383    fi
    382384fi
Note: See TracChangeset for help on using the changeset viewer.