#!/bin/sh
if [ -e /dev/wlmc ]; then
  echo "/dev/wlmc already exists, doing nothing"
  echo "Please check if it has major 160 and minor 0"
else
  echo "Creating device /dev/wlmc"
  mknod /dev/wlmc c 160 0
  echo "done"
fi
