diff options
author | Khem Raj <raj.khem@gmail.com> | 2009-02-23 13:19:19 -0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2009-02-23 13:19:19 -0800 |
commit | 8c2955ce84aa2dacfacdfa96b8d2bfaf08f985d2 (patch) | |
tree | 01b120afb41cf6fe91c0a093ac38ad7864bb862f /packages/psplash | |
parent | 0773447006cd2aa0b2c3ac364ce6e1c151215087 (diff) | |
parent | 0f5b41fdc74c6b18d482cab683a7fb2d53b6e3a2 (diff) |
Merge branch 'org.openembedded.dev' of git@git.openembedded.net:openembedded into org.openembedded.dev
Diffstat (limited to 'packages/psplash')
-rw-r--r-- | packages/psplash/files/psplash-init | 12 | ||||
-rw-r--r-- | packages/psplash/psplash-openmoko_svn.bb | 1 | ||||
-rw-r--r-- | packages/psplash/psplash.inc | 1 | ||||
-rw-r--r-- | packages/psplash/psplash_svn.bb | 2 |
4 files changed, 7 insertions, 9 deletions
diff --git a/packages/psplash/files/psplash-init b/packages/psplash/files/psplash-init index 7796a79064..a4fb1dc7d1 100644 --- a/packages/psplash/files/psplash-init +++ b/packages/psplash/files/psplash-init @@ -1,13 +1,9 @@ #!/bin/sh -for x in $(cat /proc/cmdline); do - case $x in - psplash=false) - echo "Boot splashscreen disabled" - exit 0; - ;; - esac -done +if grep -qE '\s?psplash=false\s?' /proc/cmdline; then + echo "Boot splashscreen disabled" + exit 0; +fi . /etc/init.d/functions . /etc/default/psplash diff --git a/packages/psplash/psplash-openmoko_svn.bb b/packages/psplash/psplash-openmoko_svn.bb index 4e7dbcce59..1114645040 100644 --- a/packages/psplash/psplash-openmoko_svn.bb +++ b/packages/psplash/psplash-openmoko_svn.bb @@ -10,6 +10,7 @@ ALTERNATIVE_PRIORITY = "30" # You might also want to patch the colors (see patch) SRC_URI = "svn://svn.o-hand.com/repos/misc/trunk;module=psplash;proto=http \ + file://logo-math.patch;patch=1 \ file://psplash-hand-img.h \ file://psplash-bar-img.h \ file://psplash-default \ diff --git a/packages/psplash/psplash.inc b/packages/psplash/psplash.inc index d1df18ff45..ea20436a9a 100644 --- a/packages/psplash/psplash.inc +++ b/packages/psplash/psplash.inc @@ -5,6 +5,7 @@ LICENSE = "GPL" RDEPENDS = "initscripts" PV = "0.0+svnr${SRCREV}" +PR = "r1" # You can create your own pslash-hand-img.h by doing # ./make-image-header.sh <file>.png HAND diff --git a/packages/psplash/psplash_svn.bb b/packages/psplash/psplash_svn.bb index e7cbda5641..f471396843 100644 --- a/packages/psplash/psplash_svn.bb +++ b/packages/psplash/psplash_svn.bb @@ -3,7 +3,7 @@ require psplash-ua.inc ALTERNATIVE_PRIORITY = "10" -PR = "r17" +PR = "r18" SRC_URI = "svn://svn.o-hand.com/repos/misc/trunk;module=psplash;proto=http \ file://psplash-hand-img.h \ |