All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] branding-glsdk: pin to GLSDK libdrm version
@ 2014-01-31 19:48 Chase Maupin
  2014-01-31 19:48 ` [PATCH 2/2] arago-prefs: set PREFERRED VERSION of libdrm to latest Chase Maupin
  2014-01-31 19:50 ` [PATCH 1/2] branding-glsdk: pin to GLSDK libdrm version Maupin, Chase
  0 siblings, 2 replies; 11+ messages in thread
From: Chase Maupin @ 2014-01-31 19:48 UTC (permalink / raw)
  To: meta-arago

* The GLSDK prefers to use the 2.4.41 version of libdrm from
  meta-ti so pin that version in the branding file.

Signed-off-by: Chase Maupin <chase.maupin@ti.com>
---
 .../conf/distro/include/branding-glsdk.inc         |    4 ++++
 1 file changed, 4 insertions(+)

diff --git a/meta-arago-distro/conf/distro/include/branding-glsdk.inc b/meta-arago-distro/conf/distro/include/branding-glsdk.inc
index d1c30f3..b33b21d 100644
--- a/meta-arago-distro/conf/distro/include/branding-glsdk.inc
+++ b/meta-arago-distro/conf/distro/include/branding-glsdk.inc
@@ -2,3 +2,7 @@
 
 # Use the SDK supported kernel and kernel version
 PREFERRED_PROVIDER_virtual/kernel = "linux-ti-glsdk"
+
+# Set the PREFERRED_VERSION of libdrm to the glsdk version for the 
+# glsdk branded builds
+PREFERRED_VERSION_libdrm = "2.4.41"
-- 
1.7.9.5



^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH 2/2] arago-prefs: set PREFERRED VERSION of libdrm to latest
  2014-01-31 19:48 [PATCH 1/2] branding-glsdk: pin to GLSDK libdrm version Chase Maupin
@ 2014-01-31 19:48 ` Chase Maupin
  2014-02-28 20:10   ` Denys Dmytriyenko
  2014-01-31 19:50 ` [PATCH 1/2] branding-glsdk: pin to GLSDK libdrm version Maupin, Chase
  1 sibling, 1 reply; 11+ messages in thread
From: Chase Maupin @ 2014-01-31 19:48 UTC (permalink / raw)
  To: meta-arago

* Set the PREFERRED_VERSION of libdrm to the latest available in
  openembedded core by default.
* This will allow using a version of libdrm that will support
  the latest TI devices

Signed-off-by: Chase Maupin <chase.maupin@ti.com>
---
 .../conf/distro/include/arago-prefs.inc            |    3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta-arago-distro/conf/distro/include/arago-prefs.inc b/meta-arago-distro/conf/distro/include/arago-prefs.inc
index 20c6a63..e417585 100644
--- a/meta-arago-distro/conf/distro/include/arago-prefs.inc
+++ b/meta-arago-distro/conf/distro/include/arago-prefs.inc
@@ -4,6 +4,9 @@ include conf/distro/include/qt5-versions.inc
 # Use the latest version of ltp-ddt for kernel versions 3.8+
 PREFERRED_PROVIDER_ltp-ddt = "ltp-ddt"
 
+# User the latest version of libdrm
+PREFERRED_VERSION_libdrm = "2.4.46"
+
 PREFERRED_PROVIDER_virtual/gettext = "gettext"
 
 ARAGO_QT_PROVIDER = "${@base_contains('MACHINE_FEATURES','sgx','qt4-embedded-gles','qt4-embedded',d)}"
-- 
1.7.9.5



^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [PATCH 1/2] branding-glsdk: pin to GLSDK libdrm version
  2014-01-31 19:48 [PATCH 1/2] branding-glsdk: pin to GLSDK libdrm version Chase Maupin
  2014-01-31 19:48 ` [PATCH 2/2] arago-prefs: set PREFERRED VERSION of libdrm to latest Chase Maupin
@ 2014-01-31 19:50 ` Maupin, Chase
  2014-02-04  0:51   ` Denys Dmytriyenko
  1 sibling, 1 reply; 11+ messages in thread
From: Maupin, Chase @ 2014-01-31 19:50 UTC (permalink / raw)
  To: Maupin, Chase, meta-arago@arago-project.org,
	Hingolikar, Mrinmayee

Mrinmayee,

Can you comment on the below need for 2.4.41?

>-----Original Message-----
>From: Maupin, Chase
>Sent: Friday, January 31, 2014 1:48 PM
>To: meta-arago@arago-project.org
>Cc: Maupin, Chase
>Subject: [PATCH 1/2] branding-glsdk: pin to GLSDK libdrm version
>
>* The GLSDK prefers to use the 2.4.41 version of libdrm from
>  meta-ti so pin that version in the branding file.
>
>Signed-off-by: Chase Maupin <chase.maupin@ti.com>
>---
> .../conf/distro/include/branding-glsdk.inc         |    4 ++++
> 1 file changed, 4 insertions(+)
>
>diff --git a/meta-arago-distro/conf/distro/include/branding-
>glsdk.inc b/meta-arago-distro/conf/distro/include/branding-
>glsdk.inc
>index d1c30f3..b33b21d 100644
>--- a/meta-arago-distro/conf/distro/include/branding-glsdk.inc
>+++ b/meta-arago-distro/conf/distro/include/branding-glsdk.inc
>@@ -2,3 +2,7 @@
>
> # Use the SDK supported kernel and kernel version
> PREFERRED_PROVIDER_virtual/kernel = "linux-ti-glsdk"
>+
>+# Set the PREFERRED_VERSION of libdrm to the glsdk version for
>the
>+# glsdk branded builds
>+PREFERRED_VERSION_libdrm = "2.4.41"
>--
>1.7.9.5



^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 1/2] branding-glsdk: pin to GLSDK libdrm version
  2014-01-31 19:50 ` [PATCH 1/2] branding-glsdk: pin to GLSDK libdrm version Maupin, Chase
@ 2014-02-04  0:51   ` Denys Dmytriyenko
  2014-02-04 10:04     ` Hingolikar, Mrinmayee
  0 siblings, 1 reply; 11+ messages in thread
From: Denys Dmytriyenko @ 2014-02-04  0:51 UTC (permalink / raw)
  To: Maupin, Chase; +Cc: meta-arago@arago-project.org

Ping

On Fri, Jan 31, 2014 at 07:50:39PM +0000, Maupin, Chase wrote:
> Mrinmayee,
> 
> Can you comment on the below need for 2.4.41?
> 
> >-----Original Message-----
> >From: Maupin, Chase
> >Sent: Friday, January 31, 2014 1:48 PM
> >To: meta-arago@arago-project.org
> >Cc: Maupin, Chase
> >Subject: [PATCH 1/2] branding-glsdk: pin to GLSDK libdrm version
> >
> >* The GLSDK prefers to use the 2.4.41 version of libdrm from
> >  meta-ti so pin that version in the branding file.
> >
> >Signed-off-by: Chase Maupin <chase.maupin@ti.com>
> >---
> > .../conf/distro/include/branding-glsdk.inc         |    4 ++++
> > 1 file changed, 4 insertions(+)
> >
> >diff --git a/meta-arago-distro/conf/distro/include/branding-
> >glsdk.inc b/meta-arago-distro/conf/distro/include/branding-
> >glsdk.inc
> >index d1c30f3..b33b21d 100644
> >--- a/meta-arago-distro/conf/distro/include/branding-glsdk.inc
> >+++ b/meta-arago-distro/conf/distro/include/branding-glsdk.inc
> >@@ -2,3 +2,7 @@
> >
> > # Use the SDK supported kernel and kernel version
> > PREFERRED_PROVIDER_virtual/kernel = "linux-ti-glsdk"
> >+
> >+# Set the PREFERRED_VERSION of libdrm to the glsdk version for
> >the
> >+# glsdk branded builds
> >+PREFERRED_VERSION_libdrm = "2.4.41"
> >--
> >1.7.9.5
> 
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 1/2] branding-glsdk: pin to GLSDK libdrm version
  2014-02-04  0:51   ` Denys Dmytriyenko
@ 2014-02-04 10:04     ` Hingolikar, Mrinmayee
  2014-02-04 13:16       ` Maupin, Chase
  0 siblings, 1 reply; 11+ messages in thread
From: Hingolikar, Mrinmayee @ 2014-02-04 10:04 UTC (permalink / raw)
  To: Dmytriyenko, Denys, Maupin, Chase; +Cc: meta-arago@arago-project.org

Hi all,

The libdrm in GLSDK is based on the 2.4.41 version from upstream. 
A preferred version is required since a 2.4.42 version is present in oe-core. 


Regards,
Mrinmayee

> -----Original Message-----
> From: Dmytriyenko, Denys
> Sent: Tuesday, February 04, 2014 6:21 AM
> To: Maupin, Chase
> Cc: meta-arago@arago-project.org; Hingolikar, Mrinmayee
> Subject: Re: [meta-arago] [PATCH 1/2] branding-glsdk: pin to GLSDK
> libdrm version
> 
> Ping
> 
> On Fri, Jan 31, 2014 at 07:50:39PM +0000, Maupin, Chase wrote:
> > Mrinmayee,
> >
> > Can you comment on the below need for 2.4.41?
> >
> > >-----Original Message-----
> > >From: Maupin, Chase
> > >Sent: Friday, January 31, 2014 1:48 PM
> > >To: meta-arago@arago-project.org
> > >Cc: Maupin, Chase
> > >Subject: [PATCH 1/2] branding-glsdk: pin to GLSDK libdrm version
> > >
> > >* The GLSDK prefers to use the 2.4.41 version of libdrm from
> > >  meta-ti so pin that version in the branding file.
> > >
> > >Signed-off-by: Chase Maupin <chase.maupin@ti.com>
> > >---
> > > .../conf/distro/include/branding-glsdk.inc         |    4 ++++
> > > 1 file changed, 4 insertions(+)
> > >
> > >diff --git a/meta-arago-distro/conf/distro/include/branding-
> > >glsdk.inc b/meta-arago-distro/conf/distro/include/branding-
> > >glsdk.inc
> > >index d1c30f3..b33b21d 100644
> > >--- a/meta-arago-distro/conf/distro/include/branding-glsdk.inc
> > >+++ b/meta-arago-distro/conf/distro/include/branding-glsdk.inc
> > >@@ -2,3 +2,7 @@
> > >
> > > # Use the SDK supported kernel and kernel version
> > > PREFERRED_PROVIDER_virtual/kernel = "linux-ti-glsdk"
> > >+
> > >+# Set the PREFERRED_VERSION of libdrm to the glsdk version for
> > >the
> > >+# glsdk branded builds
> > >+PREFERRED_VERSION_libdrm = "2.4.41"
> > >--
> > >1.7.9.5
> >
> > _______________________________________________
> > meta-arago mailing list
> > meta-arago@arago-project.org
> > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 1/2] branding-glsdk: pin to GLSDK libdrm version
  2014-02-04 10:04     ` Hingolikar, Mrinmayee
@ 2014-02-04 13:16       ` Maupin, Chase
  2014-02-04 15:43         ` Etheridge, Darren
  0 siblings, 1 reply; 11+ messages in thread
From: Maupin, Chase @ 2014-02-04 13:16 UTC (permalink / raw)
  To: Hingolikar, Mrinmayee, Dmytriyenko, Denys, Etheridge, Darren
  Cc: meta-arago@arago-project.org

Mrinmayee,

What is in your 2.4.41 version that makes you need to pin there.  I ask because Darren has reported needing a newer version to work properly with devices like DRA7xx.

>-----Original Message-----
>From: Hingolikar, Mrinmayee
>Sent: Tuesday, February 04, 2014 5:05 AM
>To: Dmytriyenko, Denys; Maupin, Chase
>Cc: meta-arago@arago-project.org
>Subject: RE: [meta-arago] [PATCH 1/2] branding-glsdk: pin to GLSDK
>libdrm version
>
>Hi all,
>
>The libdrm in GLSDK is based on the 2.4.41 version from upstream.
>A preferred version is required since a 2.4.42 version is present
>in oe-core.
>
>
>Regards,
>Mrinmayee
>
>> -----Original Message-----
>> From: Dmytriyenko, Denys
>> Sent: Tuesday, February 04, 2014 6:21 AM
>> To: Maupin, Chase
>> Cc: meta-arago@arago-project.org; Hingolikar, Mrinmayee
>> Subject: Re: [meta-arago] [PATCH 1/2] branding-glsdk: pin to
>GLSDK
>> libdrm version
>>
>> Ping
>>
>> On Fri, Jan 31, 2014 at 07:50:39PM +0000, Maupin, Chase wrote:
>> > Mrinmayee,
>> >
>> > Can you comment on the below need for 2.4.41?
>> >
>> > >-----Original Message-----
>> > >From: Maupin, Chase
>> > >Sent: Friday, January 31, 2014 1:48 PM
>> > >To: meta-arago@arago-project.org
>> > >Cc: Maupin, Chase
>> > >Subject: [PATCH 1/2] branding-glsdk: pin to GLSDK libdrm
>version
>> > >
>> > >* The GLSDK prefers to use the 2.4.41 version of libdrm from
>> > >  meta-ti so pin that version in the branding file.
>> > >
>> > >Signed-off-by: Chase Maupin <chase.maupin@ti.com>
>> > >---
>> > > .../conf/distro/include/branding-glsdk.inc         |    4
>++++
>> > > 1 file changed, 4 insertions(+)
>> > >
>> > >diff --git a/meta-arago-distro/conf/distro/include/branding-
>> > >glsdk.inc b/meta-arago-distro/conf/distro/include/branding-
>> > >glsdk.inc
>> > >index d1c30f3..b33b21d 100644
>> > >--- a/meta-arago-distro/conf/distro/include/branding-
>glsdk.inc
>> > >+++ b/meta-arago-distro/conf/distro/include/branding-
>glsdk.inc
>> > >@@ -2,3 +2,7 @@
>> > >
>> > > # Use the SDK supported kernel and kernel version
>> > > PREFERRED_PROVIDER_virtual/kernel = "linux-ti-glsdk"
>> > >+
>> > >+# Set the PREFERRED_VERSION of libdrm to the glsdk version
>for
>> > >the
>> > >+# glsdk branded builds
>> > >+PREFERRED_VERSION_libdrm = "2.4.41"
>> > >--
>> > >1.7.9.5
>> >
>> > _______________________________________________
>> > meta-arago mailing list
>> > meta-arago@arago-project.org
>> > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 1/2] branding-glsdk: pin to GLSDK libdrm version
  2014-02-04 13:16       ` Maupin, Chase
@ 2014-02-04 15:43         ` Etheridge, Darren
  2014-02-05 19:24           ` Denys Dmytriyenko
  0 siblings, 1 reply; 11+ messages in thread
From: Etheridge, Darren @ 2014-02-04 15:43 UTC (permalink / raw)
  To: Maupin, Chase, Hingolikar, Mrinmayee, Dmytriyenko, Denys
  Cc: meta-arago@arago-project.org

Actually devices like AM335x (DRA7x works with existing libdrm version, although 2.4.41 is a year old now):

Two reasons for needing the version bump:
1)  tilcdc DRM device is supported (this commit - http://cgit.freedesktop.org/mesa/drm/commit/?id=6e8f868e034531b66a215e4e6d978b43b58b92d0)
2) Pixel type of XB24 is supported in modetest (this is the correct pixel ordering for AM335x hardware added here: http://cgit.freedesktop.org/mesa/drm/commit/?id=fa2925aa342158037ef972f3ef095442fb1fe430)


Darren

> -----Original Message-----
> From: Maupin, Chase
> Sent: Tuesday, February 04, 2014 7:17 AM
> To: Hingolikar, Mrinmayee; Dmytriyenko, Denys; Etheridge, Darren
> Cc: meta-arago@arago-project.org
> Subject: RE: [meta-arago] [PATCH 1/2] branding-glsdk: pin to GLSDK libdrm
> version
> 
> Mrinmayee,
> 
> What is in your 2.4.41 version that makes you need to pin there.  I ask
> because Darren has reported needing a newer version to work properly with
> devices like DRA7xx.
> 
> >-----Original Message-----
> >From: Hingolikar, Mrinmayee
> >Sent: Tuesday, February 04, 2014 5:05 AM
> >To: Dmytriyenko, Denys; Maupin, Chase
> >Cc: meta-arago@arago-project.org
> >Subject: RE: [meta-arago] [PATCH 1/2] branding-glsdk: pin to GLSDK
> >libdrm version
> >
> >Hi all,
> >
> >The libdrm in GLSDK is based on the 2.4.41 version from upstream.
> >A preferred version is required since a 2.4.42 version is present
> >in oe-core.
> >
> >
> >Regards,
> >Mrinmayee
> >
> >> -----Original Message-----
> >> From: Dmytriyenko, Denys
> >> Sent: Tuesday, February 04, 2014 6:21 AM
> >> To: Maupin, Chase
> >> Cc: meta-arago@arago-project.org; Hingolikar, Mrinmayee
> >> Subject: Re: [meta-arago] [PATCH 1/2] branding-glsdk: pin to
> >GLSDK
> >> libdrm version
> >>
> >> Ping
> >>
> >> On Fri, Jan 31, 2014 at 07:50:39PM +0000, Maupin, Chase wrote:
> >> > Mrinmayee,
> >> >
> >> > Can you comment on the below need for 2.4.41?
> >> >
> >> > >-----Original Message-----
> >> > >From: Maupin, Chase
> >> > >Sent: Friday, January 31, 2014 1:48 PM
> >> > >To: meta-arago@arago-project.org
> >> > >Cc: Maupin, Chase
> >> > >Subject: [PATCH 1/2] branding-glsdk: pin to GLSDK libdrm
> >version
> >> > >
> >> > >* The GLSDK prefers to use the 2.4.41 version of libdrm from
> >> > >  meta-ti so pin that version in the branding file.
> >> > >
> >> > >Signed-off-by: Chase Maupin <chase.maupin@ti.com>
> >> > >---
> >> > > .../conf/distro/include/branding-glsdk.inc         |    4
> >++++
> >> > > 1 file changed, 4 insertions(+)
> >> > >
> >> > >diff --git a/meta-arago-distro/conf/distro/include/branding-
> >> > >glsdk.inc b/meta-arago-distro/conf/distro/include/branding-
> >> > >glsdk.inc
> >> > >index d1c30f3..b33b21d 100644
> >> > >--- a/meta-arago-distro/conf/distro/include/branding-
> >glsdk.inc
> >> > >+++ b/meta-arago-distro/conf/distro/include/branding-
> >glsdk.inc
> >> > >@@ -2,3 +2,7 @@
> >> > >
> >> > > # Use the SDK supported kernel and kernel version
> >> > > PREFERRED_PROVIDER_virtual/kernel = "linux-ti-glsdk"
> >> > >+
> >> > >+# Set the PREFERRED_VERSION of libdrm to the glsdk version
> >for
> >> > >the
> >> > >+# glsdk branded builds
> >> > >+PREFERRED_VERSION_libdrm = "2.4.41"
> >> > >--
> >> > >1.7.9.5
> >> >
> >> > _______________________________________________
> >> > meta-arago mailing list
> >> > meta-arago@arago-project.org
> >> > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 1/2] branding-glsdk: pin to GLSDK libdrm version
  2014-02-04 15:43         ` Etheridge, Darren
@ 2014-02-05 19:24           ` Denys Dmytriyenko
  2014-02-05 22:08             ` Maupin, Chase
  0 siblings, 1 reply; 11+ messages in thread
From: Denys Dmytriyenko @ 2014-02-05 19:24 UTC (permalink / raw)
  To: Etheridge, Darren; +Cc: meta-arago@arago-project.org

All,

What is the consensus here? I see that GLSDK uses own libdrm which is based on 
2.4.41, but is fetched from git.ti.com (the recipe is in meta-ti), while for 
AM335x mostly we'd like to update libdrm to the latest upstream... Is use of 
branding an optimal solution here?

-- 
Denys


On Tue, Feb 04, 2014 at 10:43:21AM -0500, Etheridge, Darren wrote:
> Actually devices like AM335x (DRA7x works with existing libdrm version, 
> although 2.4.41 is a year old now):
> 
> Two reasons for needing the version bump:
> 1) tilcdc DRM device is supported (this commit - 
> http://cgit.freedesktop.org/mesa/drm/commit/?id=6e8f868e034531b66a215e4e6d978b43b58b92d0)
> 2) Pixel type of XB24 is supported in modetest (this is the correct pixel 
> ordering for AM335x hardware added here: 
> http://cgit.freedesktop.org/mesa/drm/commit/?id=fa2925aa342158037ef972f3ef095442fb1fe430)
> 
> 
> Darren
> 
> > -----Original Message-----
> > From: Maupin, Chase
> > Sent: Tuesday, February 04, 2014 7:17 AM
> > To: Hingolikar, Mrinmayee; Dmytriyenko, Denys; Etheridge, Darren
> > Cc: meta-arago@arago-project.org
> > Subject: RE: [meta-arago] [PATCH 1/2] branding-glsdk: pin to GLSDK libdrm
> > version
> > 
> > Mrinmayee,
> > 
> > What is in your 2.4.41 version that makes you need to pin there.  I ask
> > because Darren has reported needing a newer version to work properly with
> > devices like DRA7xx.
> > 
> > >-----Original Message-----
> > >From: Hingolikar, Mrinmayee
> > >Sent: Tuesday, February 04, 2014 5:05 AM
> > >To: Dmytriyenko, Denys; Maupin, Chase
> > >Cc: meta-arago@arago-project.org
> > >Subject: RE: [meta-arago] [PATCH 1/2] branding-glsdk: pin to GLSDK
> > >libdrm version
> > >
> > >Hi all,
> > >
> > >The libdrm in GLSDK is based on the 2.4.41 version from upstream.
> > >A preferred version is required since a 2.4.42 version is present
> > >in oe-core.
> > >
> > >
> > >Regards,
> > >Mrinmayee
> > >
> > >> -----Original Message-----
> > >> From: Dmytriyenko, Denys
> > >> Sent: Tuesday, February 04, 2014 6:21 AM
> > >> To: Maupin, Chase
> > >> Cc: meta-arago@arago-project.org; Hingolikar, Mrinmayee
> > >> Subject: Re: [meta-arago] [PATCH 1/2] branding-glsdk: pin to
> > >GLSDK
> > >> libdrm version
> > >>
> > >> Ping
> > >>
> > >> On Fri, Jan 31, 2014 at 07:50:39PM +0000, Maupin, Chase wrote:
> > >> > Mrinmayee,
> > >> >
> > >> > Can you comment on the below need for 2.4.41?
> > >> >
> > >> > >-----Original Message-----
> > >> > >From: Maupin, Chase
> > >> > >Sent: Friday, January 31, 2014 1:48 PM
> > >> > >To: meta-arago@arago-project.org
> > >> > >Cc: Maupin, Chase
> > >> > >Subject: [PATCH 1/2] branding-glsdk: pin to GLSDK libdrm
> > >version
> > >> > >
> > >> > >* The GLSDK prefers to use the 2.4.41 version of libdrm from
> > >> > >  meta-ti so pin that version in the branding file.
> > >> > >
> > >> > >Signed-off-by: Chase Maupin <chase.maupin@ti.com>
> > >> > >---
> > >> > > .../conf/distro/include/branding-glsdk.inc         |    4
> > >++++
> > >> > > 1 file changed, 4 insertions(+)
> > >> > >
> > >> > >diff --git a/meta-arago-distro/conf/distro/include/branding-
> > >> > >glsdk.inc b/meta-arago-distro/conf/distro/include/branding-
> > >> > >glsdk.inc
> > >> > >index d1c30f3..b33b21d 100644
> > >> > >--- a/meta-arago-distro/conf/distro/include/branding-
> > >glsdk.inc
> > >> > >+++ b/meta-arago-distro/conf/distro/include/branding-
> > >glsdk.inc
> > >> > >@@ -2,3 +2,7 @@
> > >> > >
> > >> > > # Use the SDK supported kernel and kernel version
> > >> > > PREFERRED_PROVIDER_virtual/kernel = "linux-ti-glsdk"
> > >> > >+
> > >> > >+# Set the PREFERRED_VERSION of libdrm to the glsdk version
> > >for
> > >> > >the
> > >> > >+# glsdk branded builds
> > >> > >+PREFERRED_VERSION_libdrm = "2.4.41"
> > >> > >--
> > >> > >1.7.9.5
> > >> >
> > >> > _______________________________________________
> > >> > meta-arago mailing list
> > >> > meta-arago@arago-project.org
> > >> > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 1/2] branding-glsdk: pin to GLSDK libdrm version
  2014-02-05 19:24           ` Denys Dmytriyenko
@ 2014-02-05 22:08             ` Maupin, Chase
  0 siblings, 0 replies; 11+ messages in thread
From: Maupin, Chase @ 2014-02-05 22:08 UTC (permalink / raw)
  To: Dmytriyenko, Denys, Etheridge, Darren; +Cc: meta-arago@arago-project.org

I'm happy with it :)

>-----Original Message-----
>From: Dmytriyenko, Denys
>Sent: Wednesday, February 05, 2014 2:24 PM
>To: Etheridge, Darren
>Cc: Maupin, Chase; Hingolikar, Mrinmayee; meta-arago@arago-
>project.org
>Subject: Re: [meta-arago] [PATCH 1/2] branding-glsdk: pin to GLSDK
>libdrm version
>
>All,
>
>What is the consensus here? I see that GLSDK uses own libdrm which
>is based on
>2.4.41, but is fetched from git.ti.com (the recipe is in meta-ti),
>while for
>AM335x mostly we'd like to update libdrm to the latest upstream...
>Is use of
>branding an optimal solution here?
>
>--
>Denys
>
>
>On Tue, Feb 04, 2014 at 10:43:21AM -0500, Etheridge, Darren wrote:
>> Actually devices like AM335x (DRA7x works with existing libdrm
>version,
>> although 2.4.41 is a year old now):
>>
>> Two reasons for needing the version bump:
>> 1) tilcdc DRM device is supported (this commit -
>>
>http://cgit.freedesktop.org/mesa/drm/commit/?id=6e8f868e034531b66a
>215e4e6d978b43b58b92d0)
>> 2) Pixel type of XB24 is supported in modetest (this is the
>correct pixel
>> ordering for AM335x hardware added here:
>>
>http://cgit.freedesktop.org/mesa/drm/commit/?id=fa2925aa342158037e
>f972f3ef095442fb1fe430)
>>
>>
>> Darren
>>
>> > -----Original Message-----
>> > From: Maupin, Chase
>> > Sent: Tuesday, February 04, 2014 7:17 AM
>> > To: Hingolikar, Mrinmayee; Dmytriyenko, Denys; Etheridge,
>Darren
>> > Cc: meta-arago@arago-project.org
>> > Subject: RE: [meta-arago] [PATCH 1/2] branding-glsdk: pin to
>GLSDK libdrm
>> > version
>> >
>> > Mrinmayee,
>> >
>> > What is in your 2.4.41 version that makes you need to pin
>there.  I ask
>> > because Darren has reported needing a newer version to work
>properly with
>> > devices like DRA7xx.
>> >
>> > >-----Original Message-----
>> > >From: Hingolikar, Mrinmayee
>> > >Sent: Tuesday, February 04, 2014 5:05 AM
>> > >To: Dmytriyenko, Denys; Maupin, Chase
>> > >Cc: meta-arago@arago-project.org
>> > >Subject: RE: [meta-arago] [PATCH 1/2] branding-glsdk: pin to
>GLSDK
>> > >libdrm version
>> > >
>> > >Hi all,
>> > >
>> > >The libdrm in GLSDK is based on the 2.4.41 version from
>upstream.
>> > >A preferred version is required since a 2.4.42 version is
>present
>> > >in oe-core.
>> > >
>> > >
>> > >Regards,
>> > >Mrinmayee
>> > >
>> > >> -----Original Message-----
>> > >> From: Dmytriyenko, Denys
>> > >> Sent: Tuesday, February 04, 2014 6:21 AM
>> > >> To: Maupin, Chase
>> > >> Cc: meta-arago@arago-project.org; Hingolikar, Mrinmayee
>> > >> Subject: Re: [meta-arago] [PATCH 1/2] branding-glsdk: pin
>to
>> > >GLSDK
>> > >> libdrm version
>> > >>
>> > >> Ping
>> > >>
>> > >> On Fri, Jan 31, 2014 at 07:50:39PM +0000, Maupin, Chase
>wrote:
>> > >> > Mrinmayee,
>> > >> >
>> > >> > Can you comment on the below need for 2.4.41?
>> > >> >
>> > >> > >-----Original Message-----
>> > >> > >From: Maupin, Chase
>> > >> > >Sent: Friday, January 31, 2014 1:48 PM
>> > >> > >To: meta-arago@arago-project.org
>> > >> > >Cc: Maupin, Chase
>> > >> > >Subject: [PATCH 1/2] branding-glsdk: pin to GLSDK libdrm
>> > >version
>> > >> > >
>> > >> > >* The GLSDK prefers to use the 2.4.41 version of libdrm
>from
>> > >> > >  meta-ti so pin that version in the branding file.
>> > >> > >
>> > >> > >Signed-off-by: Chase Maupin <chase.maupin@ti.com>
>> > >> > >---
>> > >> > > .../conf/distro/include/branding-glsdk.inc         |
>4
>> > >++++
>> > >> > > 1 file changed, 4 insertions(+)
>> > >> > >
>> > >> > >diff --git a/meta-arago-
>distro/conf/distro/include/branding-
>> > >> > >glsdk.inc b/meta-arago-
>distro/conf/distro/include/branding-
>> > >> > >glsdk.inc
>> > >> > >index d1c30f3..b33b21d 100644
>> > >> > >--- a/meta-arago-distro/conf/distro/include/branding-
>> > >glsdk.inc
>> > >> > >+++ b/meta-arago-distro/conf/distro/include/branding-
>> > >glsdk.inc
>> > >> > >@@ -2,3 +2,7 @@
>> > >> > >
>> > >> > > # Use the SDK supported kernel and kernel version
>> > >> > > PREFERRED_PROVIDER_virtual/kernel = "linux-ti-glsdk"
>> > >> > >+
>> > >> > >+# Set the PREFERRED_VERSION of libdrm to the glsdk
>version
>> > >for
>> > >> > >the
>> > >> > >+# glsdk branded builds
>> > >> > >+PREFERRED_VERSION_libdrm = "2.4.41"
>> > >> > >--
>> > >> > >1.7.9.5
>> > >> >
>> > >> > _______________________________________________
>> > >> > meta-arago mailing list
>> > >> > meta-arago@arago-project.org
>> > >> > http://arago-project.org/cgi-bin/mailman/listinfo/meta-
>arago


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 2/2] arago-prefs: set PREFERRED VERSION of libdrm to latest
  2014-01-31 19:48 ` [PATCH 2/2] arago-prefs: set PREFERRED VERSION of libdrm to latest Chase Maupin
@ 2014-02-28 20:10   ` Denys Dmytriyenko
  2014-02-28 22:24     ` Maupin, Chase
  0 siblings, 1 reply; 11+ messages in thread
From: Denys Dmytriyenko @ 2014-02-28 20:10 UTC (permalink / raw)
  To: Chase Maupin; +Cc: meta-arago

On Fri, Jan 31, 2014 at 01:48:23PM -0600, Chase Maupin wrote:
> * Set the PREFERRED_VERSION of libdrm to the latest available in
>   openembedded core by default.
> * This will allow using a version of libdrm that will support
>   the latest TI devices
> 
> Signed-off-by: Chase Maupin <chase.maupin@ti.com>
> ---
>  .../conf/distro/include/arago-prefs.inc            |    3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/meta-arago-distro/conf/distro/include/arago-prefs.inc b/meta-arago-distro/conf/distro/include/arago-prefs.inc
> index 20c6a63..e417585 100644
> --- a/meta-arago-distro/conf/distro/include/arago-prefs.inc
> +++ b/meta-arago-distro/conf/distro/include/arago-prefs.inc
> @@ -4,6 +4,9 @@ include conf/distro/include/qt5-versions.inc
>  # Use the latest version of ltp-ddt for kernel versions 3.8+
>  PREFERRED_PROVIDER_ltp-ddt = "ltp-ddt"
>  
> +# User the latest version of libdrm
> +PREFERRED_VERSION_libdrm = "2.4.46"

Was this meant for dora and up? As dylan only has 2.4.42 version in oe-core... 
Just noticed the warning about 2.4.46 not being available. Was this change 
required for our release and will it work with 2.4.42, which we end up 
building anyway?


>  PREFERRED_PROVIDER_virtual/gettext = "gettext"
>  
>  ARAGO_QT_PROVIDER = "${@base_contains('MACHINE_FEATURES','sgx','qt4-embedded-gles','qt4-embedded',d)}"
> -- 
> 1.7.9.5
> 
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> 


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 2/2] arago-prefs: set PREFERRED VERSION of libdrm to latest
  2014-02-28 20:10   ` Denys Dmytriyenko
@ 2014-02-28 22:24     ` Maupin, Chase
  0 siblings, 0 replies; 11+ messages in thread
From: Maupin, Chase @ 2014-02-28 22:24 UTC (permalink / raw)
  To: Dmytriyenko, Denys; +Cc: meta-arago@arago-project.org

>-----Original Message-----
>From: Dmytriyenko, Denys
>Sent: Friday, February 28, 2014 2:10 PM
>To: Maupin, Chase
>Cc: meta-arago@arago-project.org
>Subject: Re: [meta-arago] [PATCH 2/2] arago-prefs: set PREFERRED
>VERSION of libdrm to latest
>
>On Fri, Jan 31, 2014 at 01:48:23PM -0600, Chase Maupin wrote:
>> * Set the PREFERRED_VERSION of libdrm to the latest available in
>>   openembedded core by default.
>> * This will allow using a version of libdrm that will support
>>   the latest TI devices
>>
>> Signed-off-by: Chase Maupin <chase.maupin@ti.com>
>> ---
>>  .../conf/distro/include/arago-prefs.inc            |    3 +++
>>  1 file changed, 3 insertions(+)
>>
>> diff --git a/meta-arago-distro/conf/distro/include/arago-
>prefs.inc b/meta-arago-distro/conf/distro/include/arago-prefs.inc
>> index 20c6a63..e417585 100644
>> --- a/meta-arago-distro/conf/distro/include/arago-prefs.inc
>> +++ b/meta-arago-distro/conf/distro/include/arago-prefs.inc
>> @@ -4,6 +4,9 @@ include conf/distro/include/qt5-versions.inc
>>  # Use the latest version of ltp-ddt for kernel versions 3.8+
>>  PREFERRED_PROVIDER_ltp-ddt = "ltp-ddt"
>>
>> +# User the latest version of libdrm
>> +PREFERRED_VERSION_libdrm = "2.4.46"
>
>Was this meant for dora and up? As dylan only has 2.4.42 version
>in oe-core...
>Just noticed the warning about 2.4.46 not being available. Was
>this change
>required for our release and will it work with 2.4.42, which we
>end up
>building anyway?

Dora and up.  It was a nice to have, not a have to have.

>
>
>>  PREFERRED_PROVIDER_virtual/gettext = "gettext"
>>
>>  ARAGO_QT_PROVIDER =
>"${@base_contains('MACHINE_FEATURES','sgx','qt4-embedded-
>gles','qt4-embedded',d)}"
>> --
>> 1.7.9.5
>>
>> _______________________________________________
>> meta-arago mailing list
>> meta-arago@arago-project.org
>> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
>>


^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2014-02-28 22:24 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-31 19:48 [PATCH 1/2] branding-glsdk: pin to GLSDK libdrm version Chase Maupin
2014-01-31 19:48 ` [PATCH 2/2] arago-prefs: set PREFERRED VERSION of libdrm to latest Chase Maupin
2014-02-28 20:10   ` Denys Dmytriyenko
2014-02-28 22:24     ` Maupin, Chase
2014-01-31 19:50 ` [PATCH 1/2] branding-glsdk: pin to GLSDK libdrm version Maupin, Chase
2014-02-04  0:51   ` Denys Dmytriyenko
2014-02-04 10:04     ` Hingolikar, Mrinmayee
2014-02-04 13:16       ` Maupin, Chase
2014-02-04 15:43         ` Etheridge, Darren
2014-02-05 19:24           ` Denys Dmytriyenko
2014-02-05 22:08             ` Maupin, Chase

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.