summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Perrot <thomas.perrot@bootlin.com>2022-10-05 19:19:14 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-10-25 13:42:03 +0100
commitbd22878de384f8731d899569f3fd32bc2b848219 (patch)
treed32dc1d61198cebfd8c06c79ccd99272b2216a7c
parente1053b622c0f7a0c2849906ded93e9c2e9bbcf74 (diff)
downloadpoky-bd22878de384f8731d899569f3fd32bc2b848219.tar.gz
psplash: add psplash-default in rdepends
Otherwise when the installation of recommended packages is prevented (NO_RECOMMENDATIONS = "1"), then splash screen will not be cast. (From OE-Core rev: 2a0928532b8303858980d6df6271669dbb69e224) Signed-off-by: Thomas Perrot <thomas.perrot@bootlin.com> Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-core/psplash/psplash_git.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/psplash/psplash_git.bb b/meta/recipes-core/psplash/psplash_git.bb
index edc0ac1d89..9532ed1534 100644
--- a/meta/recipes-core/psplash/psplash_git.bb
+++ b/meta/recipes-core/psplash/psplash_git.bb
@@ -58,7 +58,7 @@ python __anonymous() {
58 d.setVarFlag("ALTERNATIVE_TARGET_%s" % ep, 'psplash', '${bindir}/%s' % p) 58 d.setVarFlag("ALTERNATIVE_TARGET_%s" % ep, 'psplash', '${bindir}/%s' % p)
59 d.appendVar("RDEPENDS:%s" % ep, " %s" % pn) 59 d.appendVar("RDEPENDS:%s" % ep, " %s" % pn)
60 if p == "psplash-default": 60 if p == "psplash-default":
61 d.appendVar("RRECOMMENDS:%s" % pn, " %s" % ep) 61 d.appendVar("RDEPENDS:%s" % pn, " %s" % ep)
62} 62}
63 63
64S = "${WORKDIR}/git" 64S = "${WORKDIR}/git"