expedite: use a tar.bz2 tarball to save bandwitdh and disk space
[buildroot-gz.git] / package / busybox / S10mdev
blobd386d420b54faa92ff5088cd991a883b0fc657e1
1 #!/bin/sh
3 # Start mdev....
6 case "$1" in
7 start)
8 echo "Starting mdev..."
9 echo /sbin/mdev >/proc/sys/kernel/hotplug
10 /sbin/mdev -s
12 stop)
14 restart|reload)
17 echo "Usage: $0 {start|stop|restart}"
18 exit 1
19 esac
21 exit $?