diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2007-03-20T11·13+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2007-03-20T11·13+0000 |
commit | a8ea4cbcc8337e0fd4d423201794891fdf6e8677 (patch) | |
tree | 25e7ca2526b5d89b6883ec407898ec3c7045cff0 /scripts/find-runtime-roots.pl.in | |
parent | 8ab229ddf2383ec6455836f342539b8c89356f76 (diff) |
* Scan /proc/sys/kernel/modprobe for roots to prevent the kernel
modules for the running kernel from being garbage-collected. Idem for /proc/sys/kernel/fbsplash.
Diffstat (limited to 'scripts/find-runtime-roots.pl.in')
-rw-r--r-- | scripts/find-runtime-roots.pl.in | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/scripts/find-runtime-roots.pl.in b/scripts/find-runtime-roots.pl.in index 11c96e8b2359..64c17419ff7b 100644 --- a/scripts/find-runtime-roots.pl.in +++ b/scripts/find-runtime-roots.pl.in @@ -56,3 +56,20 @@ sub lsof { readProc; lsof; + + +sub readFile { + my $path = shift; + if (-e $path) { + if (open FILE, "$path") { + while (<FILE>) { + print; + } + close FILE; + } + } +} + +# This is rather NixOS-specific, so it probably shouldn't be here. +readFile "/proc/sys/kernel/modprobe"; +readFile "/proc/sys/kernel/fbsplash"; |