view core/busybox/busybox.mdev @ 606:25cecc6dca48

vanilla: use POSIX shell and busybox tar
author David Demelier <markand@malikania.fr>
date Thu, 18 Jul 2019 07:26:43 +0200
parents e135d70987c1
children 657ee4987f4d
line wrap: on
line source

#!/bin/sh
#
# /etc/rc.d/busybox.mdev: run control script for busybox.mdev
#
# This service is started at early boot stage if the script is marked as
# executable. There is no need to specify it in SERVICES through the rc.conf
# file.
#

if [ -f /etc/rc.conf ]; then
	. /etc/rc.conf
fi

: ${BUSYBOX_MDEV_CMD:=/bin/busybox}
: ${BUSYBOX_MDEV_ARGS:=-s}

busybox_mdev_start()
{
	echo "Starting busybox mdev: $BUSYBOX_MDEV_CMD mdev $BUSYBOX_MDEV_ARGS"
	echo "busybox mdev" > /proc/sys/kernel/hotplug
	$BUSYBOX_MDEV_CMD mdev $BUSYBOX_MDEV_ARGS
}

busybox_mdev_status()
{
	if grep -q mdev /proc/sys/kernel/hotplug > /dev/null 2>&1; then
		echo "busybox mdev is enabled"
	else
		echo "busybox mdev is not running"
	fi
}

busybox_mdev_stop()
{
	echo "Stopping busybox mdev."
	echo "" > /proc/sys/kernel/hotplug
}

busybox_mdev_restart()
{
	busybox_mdev_stop
	sleep 3
	busybox_mdev_start
}

case $1 in
start)
	busybox_mdev_start
	;;
status)
	busybox_mdev_status
	;;
stop)
	busybox_mdev_stop
	;;
restart)
	busybox_mdev_restart
	;;
*)
	echo "usage: $(basename $0) restart|start|status|stop"
	;;
esac