kumquat-buildroot/target/device/Atmel/atngw100/target_skeleton/etc/init.d/S01hotplug

15 lines
341 B
Plaintext
Raw Normal View History

2007-07-29 09:17:01 +02:00
#! /bin/sh
2007-08-17 15:01:49 +02:00
echo -n "Setting up mdev: "
2007-07-29 09:17:01 +02:00
set -e
2007-08-17 15:01:49 +02:00
trap 'echo "failed"' EXIT
2007-07-29 09:17:01 +02:00
/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
2007-08-17 15:01:49 +02:00
echo "done"