summaryrefslogtreecommitdiff
blob: 114570743900654bfb91efe438433174e5cda671 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/sbin/openrc-run
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

depend()
{
	provide dev
	need dev-mount sysfs
}

find_mdev()
{
	if [ -x /sbin/mdev ] ; then
		echo "/sbin/mdev"
	else
		echo "/bin/busybox mdev"
	fi
}

populate_mdev()
{
	ebegin "Populating /dev with existing devices with mdev -s"
	$(find_mdev) -s
	eend $?
	return 0
}

seed_dev()
{
	# copy over any persistent things
	if [ -d /lib/mdev/devices ] ; then
		cp -RPp /lib/mdev/devices/* /dev 2>/dev/null
	fi
}

start()
{
	seed_dev

	# Setup hotplugging (if possible)
	if [ -e /proc/sys/kernel/hotplug ] ; then
		ebegin "Setting up mdev as hotplug agent"
		echo $(find_mdev) > /proc/sys/kernel/hotplug
		eend 0
	fi

	if get_bootparam "nocoldplug" ; then
		ewarn "Skipping mdev coldplug as requested in kernel cmdline"
	else
		populate_mdev
	fi
}