The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / busybox / S10mdev
1 #!/bin/sh
2 #
3 # Start mdev....
4 #
5
6 case "$1" in
7   start)
8         echo "Starting mdev..."
9         echo /sbin/mdev >/proc/sys/kernel/hotplug
10         /sbin/mdev -s
11         ;;
12   stop)
13         ;;
14   restart|reload)
15         ;;
16   *)
17         echo "Usage: $0 {start|stop|restart}"
18         exit 1
19 esac
20
21 exit $?