CD=`pwd`  
cd /lib/modules

insmod usbcore.o

if insmod uhci 2> /dev/null > /dev/null
then
	echo "UHCI installed"
else
 	if insmod usb-ohci.o 2> /dev/null > /dev/null
	then
		echo "OHCI installed"
	fi
fi

insmod usb-storage.o

cd $CD
