diff options
author | Carsten Haitzler (Raster <raster@rasterman.com> | 2008-10-29 21:28:59 +1100 |
---|---|---|
committer | Stefan Schmidt <stefan@datenfreihafen.org> | 2008-11-13 23:10:56 +0000 |
commit | b7a9cf5b35bca708eb97af9775c6ef6c6dd24050 (patch) | |
tree | e60c86b3de12df06ef1298349bc5328448cb7b63 /packages/e17/exquisite | |
parent | 3f0debd6d7001dac5bb8d2c78444c9617d7b54bd (diff) |
exquisite: Fix the package so it actually can be a splash screen app
This fixes the exquisitie packages so they provide an initscript and all the
appropriate sysvinit goop in the .bb file so exquisite can be a splash app
if its installed and enabled by the initscripts.
Diffstat (limited to 'packages/e17/exquisite')
-rw-r--r-- | packages/e17/exquisite/exquisite-init | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/packages/e17/exquisite/exquisite-init b/packages/e17/exquisite/exquisite-init new file mode 100644 index 0000000000..6c94fdcae6 --- /dev/null +++ b/packages/e17/exquisite/exquisite-init @@ -0,0 +1,40 @@ +#!/bin/sh + +for x in $(cat /proc/cmdline); do + case $x in + splash=false) + echo "Splash Disabled" + exit 0; + ;; + esac +done + +. /etc/init.d/functions + +### Default config here - gets overriden later +THEME="-t default" +FPS="-fps 30" +### Override config - if there is a config file - load it. +if test -f /etc/exquisite/config; then + . /etc/exquisite/config +fi + +args='' +case `machine_id` in + "hp_ipaq_h3100"|"hp_ipaq_h3800") + args='-rot 90' ;; + "hp_ipaq_3600"|"hp_ipaq_3700"|"hp_ipaq_h3900"|"htc_universal"|*collie|*poodle|*akita|*spitz|*borzoi) + args='-rot 270' ;; +esac +args=$args" $FPS $THEME" + +export EXDIR=/mnt/.exquisite +export EXQUISITE_IPC=$EXDIR/exquisite +mount tmpfs -t tmpfs $EXDIR -o,size=40k +exquisite -fb -fs $args & + +exquisite-write -wait 20 +exquisite-write "PULSATE" + +# kill off exquisite in 180 seconds if its not gone yet +(sleep 180; exquisite-write "QUIT")& |