kumquat-buildroot/target/device/Atmel/atngw100/target_skeleton/etc/init.d/S01hotplug
2007-08-17 13:01:49 +00:00

15 lines
341 B
Bash
Executable File

#! /bin/sh
echo -n "Setting up mdev: "
set -e
trap 'echo "failed"' EXIT
/bin/ln -s /proc/self/fd /dev/fd
/bin/ln -s /proc/self/fd/0 /dev/stdin
/bin/ln -s /proc/self/fd/1 /dev/stdout
/bin/ln -s /proc/self/fd/2 /dev/stderr
/bin/ln -s /proc/kcore /dev/core
/bin/echo /sbin/mdev > /proc/sys/kernel/hotplug
/sbin/mdev -s
trap - EXIT
echo "done"