summaryrefslogtreecommitdiff
path: root/init.d
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2007-04-30 16:22:19 +0000
committerMike Frysinger <vapier@gentoo.org>2007-04-30 16:22:19 +0000
commitd2c112ef4f70fb64b8a7f666c4e07b2dcba46c30 (patch)
tree814c863d937212029aed55a7279d93013de34399 /init.d
parentc3d899714c6e68ea13cb15a75829ba16ea6cf217 (diff)
downloadopenrc-d2c112ef4f70fb64b8a7f666c4e07b2dcba46c30.tar.gz
openrc-d2c112ef4f70fb64b8a7f666c4e07b2dcba46c30.tar.bz2
openrc-d2c112ef4f70fb64b8a7f666c4e07b2dcba46c30.tar.xz
debugfs support
Diffstat (limited to 'init.d')
-rwxr-xr-xinit.d/localmount10
1 files changed, 10 insertions, 0 deletions
diff --git a/init.d/localmount b/init.d/localmount
index 13172d4..ee3c46c 100755
--- a/init.d/localmount
+++ b/init.d/localmount
@@ -93,6 +93,16 @@ start() {
fi
fi
+ # Setup Kernel Support for debugfs
+ if [ -d /sys/kernel/debug ] ; then
+ if grep -qs debugfs /proc/filesystems ; then
+ ebegin "Mounting debug filesystem"
+ mount -t debugfs debugfs /sys/kernel/debug \
+ -o nodev,noexec,nosuid
+ eend $?
+ fi
+ fi
+
# Setup Kernel Support for SELinux
if [ -d /selinux ] ; then
if grep -qs selinuxfs /proc/filesystems ; then