summaryrefslogtreecommitdiff
path: root/scripts/local
diff options
context:
space:
mode:
authormaximilian attems <max@stro.at>2010-10-19 19:03:50 +0200
committermaximilian attems <max@stro.at>2011-02-23 18:08:53 +0100
commit6cab0eccd015a443157c83643ec5aff9505bdc23 (patch)
tree4f74f1116789818b2491d6200350fc2b58edd145 /scripts/local
parentf5b834764bd000680ffca2f86625a4df6decb4d0 (diff)
initramfs-tools: cleanup any usplash traces
usplash is not released in Squeeze and is no longer in Debian unstable. Thus nuke usplash calls and any ref to it. Signed-off-by: maximilian attems <max@stro.at> Reviewed-by: Michael Prokop <mika@debian.org>
Diffstat (limited to 'scripts/local')
-rw-r--r--scripts/local7
1 files changed, 0 insertions, 7 deletions
diff --git a/scripts/local b/scripts/local
index 8cb279a..521e69a 100644
--- a/scripts/local
+++ b/scripts/local
@@ -29,10 +29,6 @@ pre_mountroot()
# Default delay is 30s
slumber=${ROOTDELAY:-30}
- if [ -x /sbin/usplash_write ]; then
- /sbin/usplash_write "TIMEOUT ${slumber}" || true
- fi
-
slumber=$(( ${slumber} * 10 ))
while [ ! -e "${ROOT}" ] \
|| ! $(get_fstype "${ROOT}" >/dev/null); do
@@ -46,9 +42,6 @@ pre_mountroot()
else
log_end_msg 1 || true
fi
- if [ -x /sbin/usplash_write ]; then
- /sbin/usplash_write "TIMEOUT 15" || true
- fi
fi
# We've given up, but we'll let the user fix matters if they can