* [PATCH] Unset DEFAULT_PREFERENCE for mesa-dri-7.2 and mesa-dri-7.4
@ 2009-12-07 21:25 Søren Holm
2009-12-08 8:05 ` Koen Kooi
0 siblings, 1 reply; 5+ messages in thread
From: Søren Holm @ 2009-12-07 21:25 UTC (permalink / raw)
To: openembedded-devel
---
recipes/mesa/mesa-dri_7.2.bb | 2 +-
recipes/mesa/mesa-dri_7.4.bb | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/recipes/mesa/mesa-dri_7.2.bb b/recipes/mesa/mesa-dri_7.2.bb
index 9356843..3030395 100644
--- a/recipes/mesa/mesa-dri_7.2.bb
+++ b/recipes/mesa/mesa-dri_7.2.bb
@@ -9,7 +9,7 @@ PE = "1"
PR = "${INC_PR}.0"
# most of our targets do not have DRI so will use mesa-xlib
-DEFAULT_PREFERENCE = "-1"
+#DEFAULT_PREFERENCE = "-1"
# ASUS EeePC 901 has DRI support so use mesa-dri by default
DEFAULT_PREFERENCE_eee901 = "1"
diff --git a/recipes/mesa/mesa-dri_7.4.bb b/recipes/mesa/mesa-dri_7.4.bb
index 9356843..3030395 100644
--- a/recipes/mesa/mesa-dri_7.4.bb
+++ b/recipes/mesa/mesa-dri_7.4.bb
@@ -9,7 +9,7 @@ PE = "1"
PR = "${INC_PR}.0"
# most of our targets do not have DRI so will use mesa-xlib
-DEFAULT_PREFERENCE = "-1"
+#DEFAULT_PREFERENCE = "-1"
# ASUS EeePC 901 has DRI support so use mesa-dri by default
DEFAULT_PREFERENCE_eee901 = "1"
--
1.6.3.3
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH] Unset DEFAULT_PREFERENCE for mesa-dri-7.2 and mesa-dri-7.4
2009-12-07 21:25 [PATCH] Unset DEFAULT_PREFERENCE for mesa-dri-7.2 and mesa-dri-7.4 Søren Holm
@ 2009-12-08 8:05 ` Koen Kooi
2009-12-08 12:15 ` Martin Jansa
2009-12-08 23:10 ` Søren Holm
0 siblings, 2 replies; 5+ messages in thread
From: Koen Kooi @ 2009-12-08 8:05 UTC (permalink / raw)
To: openembedded-devel
What's the rationale behind this change? And why do you comment it when
we have an scm that can track changes?
regards,
Koen
On 07-12-09 22:25, Søren Holm wrote:
> ---
> recipes/mesa/mesa-dri_7.2.bb | 2 +-
> recipes/mesa/mesa-dri_7.4.bb | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/recipes/mesa/mesa-dri_7.2.bb b/recipes/mesa/mesa-dri_7.2.bb
> index 9356843..3030395 100644
> --- a/recipes/mesa/mesa-dri_7.2.bb
> +++ b/recipes/mesa/mesa-dri_7.2.bb
> @@ -9,7 +9,7 @@ PE = "1"
> PR = "${INC_PR}.0"
>
> # most of our targets do not have DRI so will use mesa-xlib
> -DEFAULT_PREFERENCE = "-1"
> +#DEFAULT_PREFERENCE = "-1"
>
> # ASUS EeePC 901 has DRI support so use mesa-dri by default
> DEFAULT_PREFERENCE_eee901 = "1"
> diff --git a/recipes/mesa/mesa-dri_7.4.bb b/recipes/mesa/mesa-dri_7.4.bb
> index 9356843..3030395 100644
> --- a/recipes/mesa/mesa-dri_7.4.bb
> +++ b/recipes/mesa/mesa-dri_7.4.bb
> @@ -9,7 +9,7 @@ PE = "1"
> PR = "${INC_PR}.0"
>
> # most of our targets do not have DRI so will use mesa-xlib
> -DEFAULT_PREFERENCE = "-1"
> +#DEFAULT_PREFERENCE = "-1"
>
> # ASUS EeePC 901 has DRI support so use mesa-dri by default
> DEFAULT_PREFERENCE_eee901 = "1"
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH] Unset DEFAULT_PREFERENCE for mesa-dri-7.2 and mesa-dri-7.4
2009-12-08 8:05 ` Koen Kooi
@ 2009-12-08 12:15 ` Martin Jansa
2009-12-08 23:10 ` Søren Holm
1 sibling, 0 replies; 5+ messages in thread
From: Martin Jansa @ 2009-12-08 12:15 UTC (permalink / raw)
To: openembedded-devel
On Tue, Dec 08, 2009 at 09:05:40AM +0100, Koen Kooi wrote:
> What's the rationale behind this change? And why do you comment it
> when we have an scm that can track changes?
>
> regards,
>
> Koen
I had similar problem in xorg-7.5 branch.
Few packages depending on "mesa" directly, I replaced all with
virtual/libgl which is probably provided by all mesa variants (normal,
-full, -dri, -xlib).
Then we can use normal preference in all mesa recipes and select right
variant with PREFERRED_PROVIDER in machine config, right?
Can I merge those patches for depends on virtual/libgl?
Whole mesa directory seems quite messy to me.. 4 generations of mesa
recipes with own include files, 4 variants with not so bigg diff. But my
mesa knowledge wrt all oe devices isn't strong enough to encourage me to
cleanup it a bit (I'm glad that mesa-dri-7.6 works good with spitz and
for om-gta02 we use mesa-dri_git with special glamo DRI patches from
Thomas White's branch).
--
uin:136542059 jid:Martin.Jansa@gmail.com
Jansa Martin sip:jamasip@voip.wengo.fr
JaMa
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] Unset DEFAULT_PREFERENCE for mesa-dri-7.2 and mesa-dri-7.4
2009-12-08 8:05 ` Koen Kooi
2009-12-08 12:15 ` Martin Jansa
@ 2009-12-08 23:10 ` Søren Holm
1 sibling, 0 replies; 5+ messages in thread
From: Søren Holm @ 2009-12-08 23:10 UTC (permalink / raw)
To: openembedded-devel
Tirsdag 08 december 2009 09:05:40 skrev Koen Kooi:
> What's the rationale behind this change?
virtual/libgl pulls in mesa-dri-6.5 which does not compile agains libdrm
2.4.11. mesa-dri7.4 compile clean though.
> And why do you comment it when we have an scm that can track changes?
Ehm ... might not be the best change then. My apologizes.
/Søren Holm
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] Unset DEFAULT_PREFERENCE for mesa-dri-7.2 and mesa-dri-7.4
@ 2009-12-07 21:14 Søren Holm
0 siblings, 0 replies; 5+ messages in thread
From: Søren Holm @ 2009-12-07 21:14 UTC (permalink / raw)
To: openembedded-devel
---
recipes/mesa/mesa-dri_7.2.bb | 2 +-
recipes/mesa/mesa-dri_7.4.bb | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/recipes/mesa/mesa-dri_7.2.bb b/recipes/mesa/mesa-dri_7.2.bb
index 9356843..3030395 100644
--- a/recipes/mesa/mesa-dri_7.2.bb
+++ b/recipes/mesa/mesa-dri_7.2.bb
@@ -9,7 +9,7 @@ PE = "1"
PR = "${INC_PR}.0"
# most of our targets do not have DRI so will use mesa-xlib
-DEFAULT_PREFERENCE = "-1"
+#DEFAULT_PREFERENCE = "-1"
# ASUS EeePC 901 has DRI support so use mesa-dri by default
DEFAULT_PREFERENCE_eee901 = "1"
diff --git a/recipes/mesa/mesa-dri_7.4.bb b/recipes/mesa/mesa-dri_7.4.bb
index 9356843..3030395 100644
--- a/recipes/mesa/mesa-dri_7.4.bb
+++ b/recipes/mesa/mesa-dri_7.4.bb
@@ -9,7 +9,7 @@ PE = "1"
PR = "${INC_PR}.0"
# most of our targets do not have DRI so will use mesa-xlib
-DEFAULT_PREFERENCE = "-1"
+#DEFAULT_PREFERENCE = "-1"
# ASUS EeePC 901 has DRI support so use mesa-dri by default
DEFAULT_PREFERENCE_eee901 = "1"
--
1.6.3.3
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2009-12-08 23:12 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-07 21:25 [PATCH] Unset DEFAULT_PREFERENCE for mesa-dri-7.2 and mesa-dri-7.4 Søren Holm
2009-12-08 8:05 ` Koen Kooi
2009-12-08 12:15 ` Martin Jansa
2009-12-08 23:10 ` Søren Holm
-- strict thread matches above, loose matches on Subject: below --
2009-12-07 21:14 Søren Holm
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.