All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Denys Dmytriyenko" <denys@ti.com>
To: "Andrew F. Davis" <afd@ti.com>
Cc: <meta-ti@yoctoproject.org>, <meta-ti@lists.yoctoproject.org>
Subject: Re: [meta-ti] [zeus/master][PATCH 1/4] sgx-um, rogue-umlibs, gc320-libs: RRECOMMENDS on corresponding drivers
Date: Mon, 24 Feb 2020 17:43:54 -0500	[thread overview]
Message-ID: <20200224224354.GL22205@beryl> (raw)
In-Reply-To: <7cfa3a22-979a-df7d-2dd5-81ed956fd408@ti.com>

On Mon, Feb 24, 2020 at 12:12:06PM -0500, Andrew F. Davis wrote:
> On 2/20/20 1:47 PM, Denys Dmytriyenko via Lists.Yoctoproject.Org wrote:
> > Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> > ---
> >  recipes-graphics/libgal/ti-gc320-libs_5.0.11.p7.bb           | 2 ++
> >  recipes-graphics/libgles/ti-img-rogue-umlibs_1.10.5371573.bb | 4 +++-
> >  recipes-graphics/libgles/ti-sgx-ddk-um_1.17.4948957.bb       | 2 ++
> >  3 files changed, 7 insertions(+), 1 deletion(-)
> > 
> > diff --git a/recipes-graphics/libgal/ti-gc320-libs_5.0.11.p7.bb b/recipes-graphics/libgal/ti-gc320-libs_5.0.11.p7.bb
> > index e8c2f011..d6ecd229 100644
> > --- a/recipes-graphics/libgal/ti-gc320-libs_5.0.11.p7.bb
> > +++ b/recipes-graphics/libgal/ti-gc320-libs_5.0.11.p7.bb
> > @@ -12,6 +12,8 @@ BRANCH = "ti-${PV}"
> >  SRC_URI = "git://git.ti.com/graphics/ti-gc320-libs.git;protocol=git;branch=${BRANCH}"
> >  SRCREV = "c0afab259de59909cfe74c01f3f7fbaa147f94b5"
> >  
> > +RRECOMMENDS_${PN} = "ti-gc320-driver"
> > +
> 
> 
> Do RRECOMMENDS pull in the package by default? If I just include in my
> image "ti-gc320-libs" then I'll also get "ti-gc320-driver" automatically
> in my image also right?

Yes.

> Andrew
> 
> 
> >  # There's only hardfp version available
> >  python __anonymous() {
> >      tunes = d.getVar("TUNE_FEATURES")
> > diff --git a/recipes-graphics/libgles/ti-img-rogue-umlibs_1.10.5371573.bb b/recipes-graphics/libgles/ti-img-rogue-umlibs_1.10.5371573.bb
> > index 9cb863a5..67290756 100644
> > --- a/recipes-graphics/libgles/ti-img-rogue-umlibs_1.10.5371573.bb
> > +++ b/recipes-graphics/libgles/ti-img-rogue-umlibs_1.10.5371573.bb
> > @@ -27,7 +27,7 @@ PROVIDES += "virtual/egl virtual/libgles1 virtual/libgles2 virtual/libgbm"
> >  DEPENDS += "libdrm wayland expat"
> >  RDEPENDS_${PN} += "bash"
> >  RDEPENDS_${PN} += "python-core"
> > -RDEPENDS_${PN} += "ti-img-rogue-driver wayland expat"
> > +RDEPENDS_${PN} += "wayland expat"
> >  
> >  RPROVIDES_${PN} = "libegl libgles1 libgles2 libgbm"
> >  RPROVIDES_${PN}-dev = "libegl-dev libgles1-dev libgles2-dev libgbm-dev"
> > @@ -41,6 +41,8 @@ RCONFLICTS_${PN} = "libegl libgles1 libgles2 libgbm"
> >  RCONFLICTS_${PN}-dev = "libegl-dev libgles1-dev libgles2-dev libgbm-dev"
> >  RCONFLICTS_${PN}-dbg = "libegl-dbg libgles1-dbg libgles2-dbg"
> >  
> > +RRECOMMENDS_${PN} += "ti-img-rogue-driver"
> > +
> >  S = "${WORKDIR}/git"
> >  
> >  do_install () {
> > diff --git a/recipes-graphics/libgles/ti-sgx-ddk-um_1.17.4948957.bb b/recipes-graphics/libgles/ti-sgx-ddk-um_1.17.4948957.bb
> > index ecf3ffcc..8b0b3058 100644
> > --- a/recipes-graphics/libgles/ti-sgx-ddk-um_1.17.4948957.bb
> > +++ b/recipes-graphics/libgles/ti-sgx-ddk-um_1.17.4948957.bb
> > @@ -43,6 +43,8 @@ RCONFLICTS_${PN}-dbg = "libegl-dbg libgles1-dbg libgles2-dbg libgbm-dbg"
> >  # The actual SONAME is libGLESv2.so.2, so need to explicitly specify RPROVIDES for .so.1 here
> >  RPROVIDES_${PN} += "libGLESv2.so.1"
> >  
> > +RRECOMMENDS_${PN} += "ti-sgx-ddk-km"
> > +
> >  S = "${WORKDIR}/git"
> >  
> >  do_install () {
> > 
> > 
> > 
> > 

      reply	other threads:[~2020-02-24 22:43 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-20 18:47 [zeus/master][PATCH 1/4] sgx-um, rogue-umlibs, gc320-libs: RRECOMMENDS on corresponding drivers Denys Dmytriyenko
2020-02-20 18:47 ` [zeus/master][PATCH 2/4] omap-a15: add gc320 machine feature Denys Dmytriyenko
2020-02-20 18:47 ` [zeus/master][PATCH 3/4] vis: mark as compatible with dra7xx family Denys Dmytriyenko
2020-02-20 18:47 ` [zeus/master][PATCH 4/4] layer.conf: drop ti-ipc from SIGGEN_EXCLUDERECIPES_ABISAFE for now Denys Dmytriyenko
2020-02-24 17:12 ` [meta-ti] [zeus/master][PATCH 1/4] sgx-um, rogue-umlibs, gc320-libs: RRECOMMENDS on corresponding drivers Andrew F. Davis
2020-02-24 22:43   ` Denys Dmytriyenko [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200224224354.GL22205@beryl \
    --to=denys@ti.com \
    --cc=afd@ti.com \
    --cc=meta-ti@lists.yoctoproject.org \
    --cc=meta-ti@yoctoproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.