summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/sysvinit/sysvinit/rc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/sysvinit/sysvinit/rc')
-rwxr-xr-xmeta/recipes-core/sysvinit/sysvinit/rc5
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/recipes-core/sysvinit/sysvinit/rc b/meta/recipes-core/sysvinit/sysvinit/rc
index d0d3149821..c9f6558115 100755
--- a/meta/recipes-core/sysvinit/sysvinit/rc
+++ b/meta/recipes-core/sysvinit/sysvinit/rc
@@ -17,6 +17,7 @@
17 17
18. /etc/default/rcS 18. /etc/default/rcS
19export VERBOSE 19export VERBOSE
20export PSPLASH_FIFO_DIR
20 21
21startup_progress() { 22startup_progress() {
22 step=$(($step + $step_change)) 23 step=$(($step + $step_change))
@@ -27,7 +28,7 @@ startup_progress() {
27 fi 28 fi
28 #echo "PROGRESS is $progress $runlevel $first_step + ($step of $num_steps) $step_change $progress_size" 29 #echo "PROGRESS is $progress $runlevel $first_step + ($step of $num_steps) $step_change $progress_size"
29 if type psplash-write >/dev/null 2>&1; then 30 if type psplash-write >/dev/null 2>&1; then
30 PSPLASH_FIFO_DIR=/mnt/.psplash psplash-write "PROGRESS $progress" || true 31 psplash-write "PROGRESS $progress" || true
31 fi 32 fi
32} 33}
33 34
@@ -173,7 +174,7 @@ startup() {
173#Uncomment to cause psplash to exit manually, otherwise it exits when it sees a VC switch 174#Uncomment to cause psplash to exit manually, otherwise it exits when it sees a VC switch
174if [ "x$runlevel" != "xS" ] && [ ! -x /etc/rc${runlevel}.d/S??xserver-nodm ]; then 175if [ "x$runlevel" != "xS" ] && [ ! -x /etc/rc${runlevel}.d/S??xserver-nodm ]; then
175 if type psplash-write >/dev/null 2>&1; then 176 if type psplash-write >/dev/null 2>&1; then
176 PSPLASH_FIFO_DIR=/mnt/.psplash psplash-write "QUIT" || true 177 psplash-write "QUIT" || true
177 umount -l /mnt/.psplash 178 umount -l /mnt/.psplash
178 fi 179 fi
179fi 180fi