#!/bin/sh

# echo "Hotplug $DEVPATH $SUBSYSTEM $MODALIAS $ACTION" > /dev/console
# env > /dev/console

if [[ $SUBSYSTEM == usb ]]; then
  if [[ $ACTION == add ]]; then
      modprobe $MODALIAS
   fi
fi

/sbin/mdev
 
