81f2dd7b48
The package depends on gbm: https://gitlab.freedesktop.org/xorg/driver/xf86-video-amdgpu/-/blob/master/configure.ac#L75 This dependency was always there. However, previously it was implicit from the mesa3d dependencies. Since we made libgbm a virtual package, it is possible that libgbm is selected in another way. Note that the original dependencies would always for libgbm in mesa3d, so this was not causing any build failures. Also explicitly add libgbm to _DEPENDENCIES. Previously, this was implied by the mesa3d dependency in xserver, but this is no longer true for other gbm providers. For details see http://lists.busybox.net/pipermail/buildroot/2022-April/641451.html Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
16 lines
427 B
Plaintext
16 lines
427 B
Plaintext
config BR2_PACKAGE_XDRIVER_XF86_VIDEO_AMDGPU
|
|
bool "xf86-video-amdgpu"
|
|
depends on BR2_USE_MMU # libdrm
|
|
depends on BR2_PACKAGE_HAS_LIBGBM
|
|
select BR2_PACKAGE_LIBDRM
|
|
select BR2_PACKAGE_LIBDRM_AMDGPU
|
|
select BR2_PACKAGE_LIBEPOXY
|
|
select BR2_PACKAGE_XLIB_LIBXCOMPOSITE
|
|
select BR2_PACKAGE_XORGPROTO
|
|
help
|
|
AMD GPU video driver
|
|
|
|
comment "xf86-video-amdgpu needs GBM"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_PACKAGE_HAS_LIBGBM
|