Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v5 1/6] libdrm: Remove xorg dependency for intel driver
@ 2014-03-11 18:53 Bernd Kuhls
  2014-03-11 21:50 ` Sebastien Bourdelin
  0 siblings, 1 reply; 6+ messages in thread
From: Bernd Kuhls @ 2014-03-11 18:53 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
---
 package/libdrm/Config.in |    1 -
 1 file changed, 1 deletion(-)

diff --git a/package/libdrm/Config.in b/package/libdrm/Config.in
index 7192e94..24ff7de 100644
--- a/package/libdrm/Config.in
+++ b/package/libdrm/Config.in
@@ -13,7 +13,6 @@ menu "DRM Drivers"
 
 config BR2_PACKAGE_LIBDRM_INTEL
 	bool "intel"
-	depends on BR2_PACKAGE_XORG7
 	select BR2_PACKAGE_LIBATOMIC_OPS
 	select BR2_PACKAGE_XLIB_LIBPCIACCESS
 	depends on BR2_i386 || BR2_x86_64
-- 
1.7.10.4

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

* [Buildroot] [PATCH v5 1/6] libdrm: Remove xorg dependency for intel driver
  2014-03-11 18:53 [Buildroot] [PATCH v5 1/6] libdrm: Remove xorg dependency for intel driver Bernd Kuhls
@ 2014-03-11 21:50 ` Sebastien Bourdelin
  2014-03-12  5:09   ` Bernd Kuhls
  0 siblings, 1 reply; 6+ messages in thread
From: Sebastien Bourdelin @ 2014-03-11 21:50 UTC (permalink / raw)
  To: buildroot

Hi bernd,

On 03/11/2014 02:53 PM, Bernd Kuhls wrote:
> config BR2_PACKAGE_LIBDRM_INTEL bool "intel" - depends on
> BR2_PACKAGE_XORG7 
Remove that dependency will give a config error, so i was wrong with the
dependency on BR2_PACKAGE_XORG7 in BR2_PACKAGE_MESA3D_DRI_DRIVER_I965
because the intel dri driver depends on the libdrm that depends on the
xlib_pciaccess which is inside the xorg7 package.

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

* [Buildroot] [PATCH v5 1/6] libdrm: Remove xorg dependency for intel driver
  2014-03-11 21:50 ` Sebastien Bourdelin
@ 2014-03-12  5:09   ` Bernd Kuhls
  2014-03-12  6:00     ` Bernd Kuhls
  0 siblings, 1 reply; 6+ messages in thread
From: Bernd Kuhls @ 2014-03-12  5:09 UTC (permalink / raw)
  To: buildroot

Sebastien Bourdelin <sebastien.bourdelin-4ysUXcep3aM1wj+D4I0NRVaTQe2KTcn/
@public.gmane.org> wrote in news:531F851F.40002 at savoirfairelinux.com:

> Hi bernd,
> 
> On 03/11/2014 02:53 PM, Bernd Kuhls wrote:
>> config BR2_PACKAGE_LIBDRM_INTEL bool "intel" - depends on
>> BR2_PACKAGE_XORG7 
> Remove that dependency will give a config error, so i was wrong with the
> dependency on BR2_PACKAGE_XORG7 in BR2_PACKAGE_MESA3D_DRI_DRIVER_I965
> because the intel dri driver depends on the libdrm that depends on the
> xlib_pciaccess which is inside the xorg7 package.
> 

Hi,

xlib_pciaccess itself does not depend on xorg stuff, I was able to compile 
the libdrm intel driver with patch v5 without activating xorg7.

Regards, Bernd

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

* [Buildroot] [PATCH v5 1/6] libdrm: Remove xorg dependency for intel driver
  2014-03-12  5:09   ` Bernd Kuhls
@ 2014-03-12  6:00     ` Bernd Kuhls
  2014-03-12  7:14       ` Sebastien Bourdelin
  0 siblings, 1 reply; 6+ messages in thread
From: Bernd Kuhls @ 2014-03-12  6:00 UTC (permalink / raw)
  To: buildroot

Bernd Kuhls <berndkuhls@hotmail.com> wrote in
news:3p65vaxf8m.ln2 at ID-313208.user.individual.net: 

> xlib_pciaccess itself does not depend on xorg stuff, I was able to
> compile the libdrm intel driver with patch v5 without activating xorg7.

PS: Should we also move libpciaccess out of the xorg section?

Regards, Bernd

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

* [Buildroot] [PATCH v5 1/6] libdrm: Remove xorg dependency for intel driver
  2014-03-12  6:00     ` Bernd Kuhls
@ 2014-03-12  7:14       ` Sebastien Bourdelin
  2014-03-12 19:24         ` Bernd Kuhls
  0 siblings, 1 reply; 6+ messages in thread
From: Sebastien Bourdelin @ 2014-03-12  7:14 UTC (permalink / raw)
  To: buildroot

Hi bernd,

On 03/12/2014 02:00 AM, Bernd Kuhls wrote:
> Bernd Kuhls <berndkuhls@hotmail.com> wrote in
> news:3p65vaxf8m.ln2 at ID-313208.user.individual.net: 
>
>> xlib_pciaccess itself does not depend on xorg stuff, I was able to
>> compile the libdrm intel driver with patch v5 without activating xorg7.
As far as i understand, the package XORG7 is a kind of a container which
doesn't compile anything, it only adds global toolchain dependencies for
all the xorg stuff.
Did you try to build the xlib_libpciaccess with a toolchain without this
options ?

> PS: Should we also move libpciaccess out of the xorg section?
I dont think so, even if the libpciaccess is a generic PCI access
library, it come as a part of the Xorg project and perhaps there is
other xlib that doesn't require the toolchain options above so should we
move them too ?
An other option could be to don't set dependencies on the XORG7 package
and move the dependencies inside each sub-packages.

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

* [Buildroot] [PATCH v5 1/6] libdrm: Remove xorg dependency for intel driver
  2014-03-12  7:14       ` Sebastien Bourdelin
@ 2014-03-12 19:24         ` Bernd Kuhls
  0 siblings, 0 replies; 6+ messages in thread
From: Bernd Kuhls @ 2014-03-12 19:24 UTC (permalink / raw)
  To: buildroot

Sebastien Bourdelin
<sebastien.bourdelin@savoirfairelinux.com>
wrote in news:5320096D.1020900 at savoirfairelinux.com: 

>>> xlib_pciaccess itself does not depend on xorg stuff, I was able to
>>> compile the libdrm intel driver with patch v5 without activating
>>> xorg7. 
> As far as i understand, the package XORG7 is a kind of a container which
> doesn't compile anything, it only adds global toolchain dependencies for
> all the xorg stuff.
> Did you try to build the xlib_libpciaccess with a toolchain without this
> options ?

Hi,

no, and I do not think I will try to do se because I would like to see my 
patches committed to buildroot in the nearby future;) I will post a new 
series without this patch.

Regards, Bernd

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

end of thread, other threads:[~2014-03-12 19:24 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-11 18:53 [Buildroot] [PATCH v5 1/6] libdrm: Remove xorg dependency for intel driver Bernd Kuhls
2014-03-11 21:50 ` Sebastien Bourdelin
2014-03-12  5:09   ` Bernd Kuhls
2014-03-12  6:00     ` Bernd Kuhls
2014-03-12  7:14       ` Sebastien Bourdelin
2014-03-12 19:24         ` Bernd Kuhls

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox