]> git.karo-electronics.de Git - meta-kc-bsp.git/blobdiff - recipes-bsp/psplash/files/psplash-init
psplash-mucross: Add µCross modified psplash.
[meta-kc-bsp.git] / recipes-bsp / psplash / files / psplash-init
diff --git a/recipes-bsp/psplash/files/psplash-init b/recipes-bsp/psplash/files/psplash-init
new file mode 100644 (file)
index 0000000..0409240
--- /dev/null
@@ -0,0 +1,24 @@
+#!/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/.splash
+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") &