diff options
Diffstat (limited to 'meta-efl/recipes-efl/e17/exquisite')
-rw-r--r-- | meta-efl/recipes-efl/e17/exquisite/exquisite-init | 40 | ||||
-rw-r--r-- | meta-efl/recipes-efl/e17/exquisite/splashfuncs | 29 |
2 files changed, 0 insertions, 69 deletions
diff --git a/meta-efl/recipes-efl/e17/exquisite/exquisite-init b/meta-efl/recipes-efl/e17/exquisite/exquisite-init deleted file mode 100644 index 2de6774ff..000000000 --- a/meta-efl/recipes-efl/e17/exquisite/exquisite-init +++ /dev/null | |||
@@ -1,40 +0,0 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | for x in $(cat /proc/cmdline); do | ||
4 | case $x in | ||
5 | splash=false) | ||
6 | echo "Splash Disabled" | ||
7 | exit 0; | ||
8 | ;; | ||
9 | esac | ||
10 | done | ||
11 | |||
12 | . /etc/init.d/functions | ||
13 | |||
14 | ### Default config here - gets overriden later | ||
15 | THEME="-t default" | ||
16 | FPS="-fps 30" | ||
17 | ### Override config - if there is a config file - load it. | ||
18 | if test -f /etc/exquisite/config; then | ||
19 | . /etc/exquisite/config | ||
20 | fi | ||
21 | |||
22 | args='' | ||
23 | case `machine_id` in | ||
24 | "hp_ipaq_h3100"|"hp_ipaq_h3800") | ||
25 | args='-rot 90' ;; | ||
26 | "hp_ipaq_3600"|"hp_ipaq_3700"|"hp_ipaq_h3900"|"htc_universal"|*collie|*poodle|*akita|*spitz|*borzoi) | ||
27 | args='-rot 270' ;; | ||
28 | esac | ||
29 | args=$args" $FPS $THEME" | ||
30 | |||
31 | export EXDIR=/mnt/.splash | ||
32 | export EXQUISITE_IPC=$EXDIR/exquisite | ||
33 | mount tmpfs -t tmpfs $EXDIR -o,size=40k | ||
34 | exquisite -fb -fs $args & | ||
35 | |||
36 | exquisite-write -wait 120 | ||
37 | exquisite-write "PULSATE" | ||
38 | setterm -blank 0 | ||
39 | setterm -powersave off | ||
40 | setterm -powerdown 0 | ||
diff --git a/meta-efl/recipes-efl/e17/exquisite/splashfuncs b/meta-efl/recipes-efl/e17/exquisite/splashfuncs deleted file mode 100644 index ada2a96dd..000000000 --- a/meta-efl/recipes-efl/e17/exquisite/splashfuncs +++ /dev/null | |||
@@ -1,29 +0,0 @@ | |||
1 | status() { | ||
2 | if type splash-write >/dev/null 2>&1; then | ||
3 | (TMPDIR="/mnt/.splash" EXQUISITE_IPC="$TMPDIR/exquisite" splash-write "$1" || true) & | ||
4 | fi | ||
5 | } | ||
6 | |||
7 | status_position() { | ||
8 | status "PROGRESS $1" | ||
9 | } | ||
10 | |||
11 | status_title() { | ||
12 | status "TITLE $1" | ||
13 | } | ||
14 | |||
15 | status_text() { | ||
16 | if test -n "$1"; then | ||
17 | status "MSG $1" | ||
18 | else | ||
19 | status "CLEAR" | ||
20 | fi | ||
21 | } | ||
22 | |||
23 | status_pulse() { | ||
24 | status "PULSATE" | ||
25 | } | ||
26 | |||
27 | status_tick() { | ||
28 | status "TICK" | ||
29 | } | ||