95ed066539
It appears that the only reason we were force loading the usbcore module was to facilitate mounting usbfs. Since we no longer mount usbfs, this is no longer necessary. X-Gentoo-Bug: 480312 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=480312
39 lines
967 B
Plaintext
39 lines
967 B
Plaintext
#!@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()
|
|
{
|
|
# 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
|
|
}
|