kumquat-buildroot/target/device/Atmel/atngw100-base/target_skeleton/etc/init.d/S01hotplug
2008-03-06 18:59:14 +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"