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

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

