You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-dotnet/pe-format/files/pe-format.init-1

54 lines
1.2 KiB

#!/sbin/runscript
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/pe-format/files/pe-format.init-1,v 1.1 2009/07/28 10:43:54 flameeyes Exp $
depend() {
after procfs
}
start() {
ebegin "Registering PE binaries with ${CLR}"
if [[ ! -d /proc/sys/fs/binfmt_misc ]] ; then
eerror "You need support for \"misc binaries\" in your kernel!"
eend 1
fi
if [[ $(mount | grep -c binfmt_misc) -eq 0 ]] ; then
mount -t binfmt_misc binfmt_misc /proc/sys/fs/binfmt_misc &> /dev/null
local result=$?
if [[ $result -ne 0 ]] ; then
eend $result
fi
fi
case "${CLR}" in
mono)
echo ':PE:M::MZ::/usr/bin/mono:' > /proc/sys/fs/binfmt_misc/register
eend 0
;;
ilrun)
echo ':PE:M::MZ::/usr/bin/ilrun:' > /proc/sys/fs/binfmt_misc/register
eend 0
;;
*)
eerror 'Please enter a valid option in /etc/conf.d/pe-format'
eend 1
;;
esac
}
stop() {
ebegin "Unregistering PE binaries"
if [[ -f /proc/sys/fs/binfmt_misc/PE ]] ; then
echo '-1' > /proc/sys/fs/binfmt_misc/PE
fi
eend $?
}
# vim: ts=4 :