summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Hubbs <williamh@gentoo.org>2011-02-16 15:46:10 -0600
committerWilliam Hubbs <williamh@gentoo.org>2011-04-30 21:46:14 -0500
commit92dfcf16f04261c99a7eb4e1320d5fc933ae4a70 (patch)
treed22aaaf3228a3ce8b14bf4a708372f2670ab3896
parentreset splash to verbose mode for speakup users (diff)
downloadlivecd-tools-92dfcf16f04261c99a7eb4e1320d5fc933ae4a70.tar.gz
livecd-tools-92dfcf16f04261c99a7eb4e1320d5fc933ae4a70.tar.bz2
livecd-tools-92dfcf16f04261c99a7eb4e1320d5fc933ae4a70.zip
add check to be sure splash is only reset for speakup users
-rwxr-xr-xinit.d/autoconfig10
1 files changed, 7 insertions, 3 deletions
diff --git a/init.d/autoconfig b/init.d/autoconfig
index df1a8d1..4854cb8 100755
--- a/init.d/autoconfig
+++ b/init.d/autoconfig
@@ -587,9 +587,13 @@ start() {
killall hwsetup 2>/dev/null
echo "6" > /proc/sys/kernel/printk
- splash_manager -c set -t livecd-10 -m v > /dev/null 2>&1
- reset
- chvt 1
+
+ if yesno "${SPEAKUP}"
+ then
+ splash_manager -c set -t livecd-10 -m v > /dev/null 2>&1
+ reset
+ chvt 1
+ fi
}
# vim: ts=4