#!/bin/sh
# create various device files at

# this script is started as "$0 start", but since it's only a startup
# script, i'll ignore $1 - jwc 27Apr2008

export HOME=/root

echo -n "Creating device files: "
touch /etc/mdev.conf # keep mdev from complaining
mdev -s > /tmp/`basename $0`.log 2>&1 && echo '[ OK ]' || echo '[FAIL]'
