#!/bin/sh
# set hotplug handler at boot

case "$1" in 
	start)
		echo -n "Setting hotplug handler: "  
		echo /sbin/mdev > /proc/sys/kernel/hotplug
		echo '[ OK ]'
	;;
	*)
	;;
esac
