Unload the splash decoder module when a screen saver module is loaded.
Strictly speaking, it is not necessary; the screen saver will load even if the splash module is still in memory. But still, it is the right thing to do, otherwise the splash decoder module just wasts the kernel space. Discussed with: des
This commit is contained in:
parent
4d7a9b1889
commit
ae908d9cf0
@ -1,6 +1,6 @@
|
||||
#!/bin/sh -
|
||||
#
|
||||
# $Id: rc.i386,v 1.36 1998/11/01 13:04:15 wosch Exp $
|
||||
# $Id: rc.i386,v 1.37 1998/11/11 05:25:32 peter Exp $
|
||||
# Do i386 specific processing
|
||||
#
|
||||
|
||||
@ -94,6 +94,9 @@ fi
|
||||
# screen saver
|
||||
if [ "X${saver}" != X"NO" ] ; then
|
||||
echo -n ' screensaver'
|
||||
for i in `kldstat | awk '$5 ~ "^splash_.*$" { print $5 }'`; do
|
||||
kldunload $i
|
||||
done
|
||||
kldstat -v | grep -q _saver || kldload ${saver}_saver
|
||||
fi
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/bin/sh -
|
||||
#
|
||||
# $Id: rc.i386,v 1.36 1998/11/01 13:04:15 wosch Exp $
|
||||
# $Id: rc.i386,v 1.37 1998/11/11 05:25:32 peter Exp $
|
||||
# Do i386 specific processing
|
||||
#
|
||||
|
||||
@ -94,6 +94,9 @@ fi
|
||||
# screen saver
|
||||
if [ "X${saver}" != X"NO" ] ; then
|
||||
echo -n ' screensaver'
|
||||
for i in `kldstat | awk '$5 ~ "^splash_.*$" { print $5 }'`; do
|
||||
kldunload $i
|
||||
done
|
||||
kldstat -v | grep -q _saver || kldload ${saver}_saver
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user