#!/bin/sh
case "$1" in
start)
echo "Starting mdev..."
echo /sbin/mdev > /proc/sys/kernel/hotplug
/sbin/mdev -s
;;
esac