diff options
-rw-r--r-- | packages/psplash/files/psplash-init | 9 | ||||
-rw-r--r-- | packages/psplash/psplash_svn.bb | 2 |
2 files changed, 8 insertions, 3 deletions
diff --git a/packages/psplash/files/psplash-init b/packages/psplash/files/psplash-init index a966638074..2bd83cfb07 100644 --- a/packages/psplash/files/psplash-init +++ b/packages/psplash/files/psplash-init @@ -9,8 +9,13 @@ for x in $(cat /proc/cmdline); do esac done +psplash_args='' +case "`grep ^Hardware /proc/cpuinfo|cut -d: -f2 |tr A-Z a-z`" in + "hp ipaq h3100"|"hp ipaq h3800") pspash_args='-a 90' ;; + "hp ipaq 3600"|"hp ipaq 3700"|"hp ipaq h3900"|"htc universal"|*collie|*poodle|*akita|*spitz|*borzoi) psplash_args='-a 270' ;; +esac + export TMPDIR=/mnt/.psplash mount tmpfs -t tmpfs $TMPDIR -o,size=40k -/usr/bin/psplash & - +/usr/bin/psplash $psplash_args & diff --git a/packages/psplash/psplash_svn.bb b/packages/psplash/psplash_svn.bb index eebe2179da..6b51d33597 100644 --- a/packages/psplash/psplash_svn.bb +++ b/packages/psplash/psplash_svn.bb @@ -3,7 +3,7 @@ SECTION = "base" LICENSE = "GPL" PV = "0.0+svn${SRCDATE}" -PR = "r2" +PR = "r3" # You can create your own pslash-hand-img.h by doing # ./make-image-header.sh <file>.png HAND |