summaryrefslogtreecommitdiff
path: root/packages/psplash/files/psplash-init
diff options
context:
space:
mode:
Diffstat (limited to 'packages/psplash/files/psplash-init')
-rw-r--r--packages/psplash/files/psplash-init24
1 files changed, 0 insertions, 24 deletions
diff --git a/packages/psplash/files/psplash-init b/packages/psplash/files/psplash-init
deleted file mode 100644
index a4fb1dc7d1..0000000000
--- a/packages/psplash/files/psplash-init
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-
-if grep -qE '\s?psplash=false\s?' /proc/cmdline; then
- echo "Boot splashscreen disabled"
- exit 0;
-fi
-
-. /etc/init.d/functions
-. /etc/default/psplash
-
-case `machine_id` in
- "hp_ipaq_h3100"|"hp_ipaq_h3800")
- PARAMS='-a 90' ;;
- "hp_ipaq_3600"|"hp_ipaq_3700"|"hp_ipaq_h3900"|"htc_universal"|*collie|*poodle|*akita|*spitz|*borzoi)
- PARAMS='-a 270' ;;
-esac
-
-export TMPDIR=/mnt/.psplash
-mount tmpfs -t tmpfs $TMPDIR -o,size=40k
-
-/usr/bin/psplash $PARAMS &
-
-# Timetrap against hanging with splash hiding console messages.
-(sleep 120; psplash-write "QUIT") &