509ce3a6ec
xdriver_xf86-video-fbturbo has an optional dependency to libump currently not handled by buildroot: https://github.com/ssvb/xf86-video-fbturbo/blob/master/configure.ac#L91 If libump was compiled incidentally before xdriver_xf86-video-fbturbo sunxi_mali_ump_dri2.c is compiled which depends on dri2: https://github.com/ssvb/xf86-video-fbturbo/blob/master/src/Makefile.am#L59 This patch adds a dependency for dri2proto to enable dri2 support in X.org and adds libump as dependency for a reproducable build to fix http://autobuild.buildroot.net/results/656/656520682a5ac6fe5e1e741e1a92b1eab4245f2d/ [Peter: also add dri2proto to _DEPENDENCIES] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
18 lines
632 B
Plaintext
18 lines
632 B
Plaintext
config BR2_PACKAGE_XDRIVER_XF86_VIDEO_FBTURBO
|
|
bool "xf86-video-fbturbo"
|
|
select BR2_PACKAGE_LIBDRM
|
|
select BR2_PACKAGE_PIXMAN
|
|
select BR2_PACKAGE_XPROTO_DRI2PROTO if BR2_PACKAGE_LIBUMP
|
|
select BR2_PACKAGE_XPROTO_FONTSPROTO
|
|
select BR2_PACKAGE_XPROTO_RANDRPROTO
|
|
select BR2_PACKAGE_XPROTO_RENDERPROTO
|
|
select BR2_PACKAGE_XPROTO_VIDEOPROTO
|
|
select BR2_PACKAGE_XPROTO_XPROTO
|
|
select BR2_PACKAGE_XPROTO_XF86DRIPROTO
|
|
help
|
|
video driver, primarily optimized for the devices powered
|
|
by the Allwinner SoC (A10, A13, A20). It can use some of
|
|
the 2D/3D hardware acceleration features.
|
|
|
|
https://github.com/ssvb/xf86-video-fbturbo
|