2015-07-31 00:55:23 +00:00
|
|
|
#!/sbin/openrc-run
|
2015-02-27 00:58:55 +00:00
|
|
|
# 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
|
2015-07-31 00:55:23 +00:00
|
|
|
keyword -openvz -prefix -systemd-nspawn -vserver -lxc
|
2015-02-27 00:58:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
start()
|
|
|
|
{
|
|
|
|
# Setup Kernel Support for miscellaneous Binary Formats
|
|
|
|
if [ -d /proc/sys/fs/binfmt_misc -a ! -e /proc/sys/fs/binfmt_misc/register ]; then
|
2015-07-31 00:55:23 +00:00
|
|
|
modprobe -q binfmt-misc
|
2015-02-27 00:58:55 +00:00
|
|
|
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
|
|
|
|
eend $?
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
return 0
|
|
|
|
}
|