aboutsummaryrefslogtreecommitdiff
path: root/init.d/procfs.in
blob: 24dbfaf04cb63dbb32649b60a2dd1826a49ad007 (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
#!@SBINDIR@/openrc-run
# Copyright (c) 2007-2009 Roy Marples <roy@marples.name>
# Released under the 2-clause BSD license.

description="Mounts misc filesystems in /proc."

depend()
{
	use modules devfs
	need localmount
	keyword -openvz -prefix -vserver -lxc
}

start()
{
	# Make sure we insert usbcore if it's a module
	if [ -f /proc/modules -a ! -d /sys/module/usbcore -a ! -d /proc/bus/usb ]; then
		modprobe -q usbcore
	fi

	# Setup Kernel Support for miscellaneous Binary Formats
	if [ -d /proc/sys/fs/binfmt_misc -a ! -e /proc/sys/fs/binfmt_misc/register ]; then
		if grep -qs binfmt_misc /proc/filesystems; then
			ebegin "Mounting misc binary format filesystem"
			mount -t binfmt_misc -o nodev,noexec,nosuid \
				binfmt_misc /proc/sys/fs/binfmt_misc
			if eend $? ; then
				local fmts
				ebegin "Loading custom binary format handlers"
				fmts=$(grep -hsv -e '^[#;]' -e '^[[:space:]]*$' \
					/run/binfmt.d/*.conf \
					/etc/binfmt.d/*.conf \
					""/usr/lib/binfmt.d/*.conf)
				if [ -n "${fmts}" ]; then
					echo "${fmts}" > /proc/sys/fs/binfmt_misc/register
				fi
				eend $?
			fi
		fi
	fi

	return 0
}