summaryrefslogtreecommitdiffstats
path: root/initramfs/initrd-stuff/bin
diff options
context:
space:
mode:
Diffstat (limited to 'initramfs/initrd-stuff/bin')
-rwxr-xr-xinitramfs/initrd-stuff/bin/hwautocfg16
1 files changed, 14 insertions, 2 deletions
diff --git a/initramfs/initrd-stuff/bin/hwautocfg b/initramfs/initrd-stuff/bin/hwautocfg
index 9bdb4bc6..de275307 100755
--- a/initramfs/initrd-stuff/bin/hwautocfg
+++ b/initramfs/initrd-stuff/bin/hwautocfg
@@ -3,7 +3,7 @@
# universal (distro independent) hardware autoconfiguration script for
# OpenSLX linux diskless clients, using hwconfig from knoppix as base tool
#
-# Dirk von Suchodoletz <dvs@OpenSLX.com>, 14-12-2006
+# Dirk von Suchodoletz <dvs@OpenSLX.com>, 16-12-2006
#
# (c) 2003 - 2006 - RZ Universitaet Freiburg
# (c) 2006 - OpenSLX.org Project
@@ -301,6 +301,7 @@ for DRIVER in ohci-hcd uhci-hcd ehci-hcd ohci1394; do
modprobe ${MODPRV} ${DRIVER}
DRIVERLIST="${DRIVERLIST} ${DRIVER}"; }
done
+[ -x /bin/mdev ] && mdev -s &
# load usbhid (for USB keyboard/mouse) or remove usbcore module if USB
# is not present
if [ -n "$USB" ] ; then
@@ -343,7 +344,9 @@ modprobe ${MODPRV} snd-mixer-oss
# rerun the knoppix hardware autodetection tool for USB and ide devices
# like dvd or harddisk - wait a few seconds so hopefully the ide driver
# is initialized
-test -f /proc/bus/usb/devices || mount -n -t usbfs usbfs /proc/bus/usb
+[ -x /bin/mdev ] && mdev -s &
+test -f /proc/bus/usb/devices || \
+ mount -n -t usbfs usbfs /proc/bus/usb 2>/dev/null
[ -n "$IDE" ] && modprobe -q ide_generic 2>/dev/null
usleep 10 && hwsetup -v > /tmp/hwsetup.info
# remaining drivers listed in /tmp/hwsetup.info
@@ -385,6 +388,7 @@ if strinfile "SCSI" /tmp/hwsetup.info ; then
echo -e 'KERNEL=="sg*",\t\tNAME="%k", GROUP="disk", MODE="666"' \
>> /tmp/scanner-udev
fi
+[ -x /bin/mdev ] && mdev -s &
# fixme - psmouse entladen, falls nicht vorhanden
# configure some variables from configuration file - wait for dhcp or ldap
@@ -467,6 +471,13 @@ if strinstr "/var/X11R6" "$link" ; then
[ -e "/mnt/$i" ] && { ln -sf $i /mnt/var/X11R6/bin/X; break; }
done
fi
+# if any new device appeared up to now
+if [ -x /bin/mdev ] ; then
+ mdev -s &
+ testmkd /dev/input
+ mknod /dev/input/mice c 13 63 2>/dev/null
+fi
+
# wait for completion of Xorg configuration
waitfor /tmp/xready 20000
cp /etc/xorg.conf ${D_XF86CONFFILE}
@@ -474,6 +485,7 @@ cp /etc/xorg.conf ${D_XF86CONFFILE}
# do not finish until tmp is setup properly
[ -n "$part44" ] && waitfor /tmp/tmpready 20000
+
# script run timer
[ $DEBUGLEVEL -eq 8 ] && echo "** HW setup finished at $(sysup)"