diff options
author | Andrea Adami <andrea.adami@gmail.com> | 2010-06-11 00:57:53 +0200 |
---|---|---|
committer | Andrea Adami <andrea.adami@gmail.com> | 2010-06-11 01:17:40 +0200 |
commit | 0ed82e1a5884f608f94f6b86be65a4bd9f24066c (patch) | |
tree | f670306e403cda4c73554bd0f9b59d4410d98e06 /recipes/psplash | |
parent | 824a96b946b01d9abca84928dc05ed1efa7df863 (diff) |
psplash-zap: default to RRECOMMENDS_${PN} = "${SPLASH}"
* console-base-image and gnuradio-image are using psplash-zap but
* some distros do not define SPLASH then image.bbclass provides as
* default SPLASH ?= ""
* We can conclude that if they don't have SPLASH they probably don't want
* psplash-zap.
* bump PR
Diffstat (limited to 'recipes/psplash')
-rw-r--r-- | recipes/psplash/psplash-zap_1.0.bb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/recipes/psplash/psplash-zap_1.0.bb b/recipes/psplash/psplash-zap_1.0.bb index 16e6feba45..3e8605e3fa 100644 --- a/recipes/psplash/psplash-zap_1.0.bb +++ b/recipes/psplash/psplash-zap_1.0.bb @@ -1,14 +1,14 @@ SRC_URI = "file://zzapsplash-init" -PR = "r3" +PR = "r4" do_install_prepend() { - install -d "${D}${sysconfdir}/init.d/" - install -m 0755 "${WORKDIR}/zzapsplash-init" "${D}${sysconfdir}/init.d/zzapsplash" + install -d "${D}${sysconfdir}/init.d/" + install -m 0755 "${WORKDIR}/zzapsplash-init" "${D}${sysconfdir}/init.d/zzapsplash" } inherit update-rc.d -RRECOMMENDS_${PN} = "psplash-angstrom" +RRECOMMENDS_${PN} = "${SPLASH}" INITSCRIPT_NAME = "zzapsplash" INITSCRIPT_PARAMS = "start 99 5 S ." |