#!/bin/sh PREREQ="udev" prereqs() { echo "$PREREQ" } case $1 in prereqs) prereqs exit 0 ;; esac if grep -q splash /proc/cmdline; then /bin/chvt 1 fi sleep 3 if grep -q splash /proc/cmdline; then /sbin/usplash -c & sleep 1 fi /sbin/wpa_supplicant -Dwext -iwlan0 -c /etc/wpa_supplicant.conf & sleep 5 ipconfig wlan0 &