diff options
author | Jeremy Lainé <jeremy.laine@m4x.org> | 2008-12-23 13:35:35 +0100 |
---|---|---|
committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2008-12-23 13:35:35 +0100 |
commit | 35781184a69de7baf128f9bff1af185ccd3b4d53 (patch) | |
tree | 940177ea0a84bde3c77f051d8396a76dc22f33c1 /packages/psplash/psplash_svn.bb | |
parent | e96fd46ba551a014d19021c06c6e9e73f69e436a (diff) |
psplash: add config file to pass parameters to psplash
Diffstat (limited to 'packages/psplash/psplash_svn.bb')
-rw-r--r-- | packages/psplash/psplash_svn.bb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/psplash/psplash_svn.bb b/packages/psplash/psplash_svn.bb index 0fd386492a..36c8b3960d 100644 --- a/packages/psplash/psplash_svn.bb +++ b/packages/psplash/psplash_svn.bb @@ -3,7 +3,7 @@ HOMEPAGE = "http://projects.o-hand.com/psplash" SECTION = "base" LICENSE = "GPL" PV = "0.0+svnr${SRCREV}" -PR = "r13" +PR = "r14" RDEPENDS = "initscripts" # You can create your own pslash-hand-img.h by doing @@ -15,6 +15,7 @@ RDEPENDS = "initscripts" SRC_URI = "svn://svn.o-hand.com/repos/misc/trunk;module=psplash;proto=http \ file://psplash-hand-img.h \ file://psplash-bar-img.h \ + file://psplash-default \ file://psplash-init" S = "${WORKDIR}/psplash" @@ -36,6 +37,8 @@ do_configure_append() { do_install_prepend() { install -d ${D}/mnt/.psplash/ + install -d ${D}${sysconfdir}/default/ + install -m 0644 ${WORKDIR}/psplash-default ${D}${sysconfdir}/default/psplash install -d ${D}${sysconfdir}/init.d/ install -m 0755 ${WORKDIR}/psplash-init ${D}${sysconfdir}/init.d/psplash } |