Config.in 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. comment "amd-catalyst needs a glibc toolchain"
  2. depends on BR2_i386 || BR2_x86_64
  3. depends on !BR2_TOOLCHAIN_USES_GLIBC
  4. config BR2_PACKAGE_AMD_CATALYST
  5. bool "amd-catalyst"
  6. depends on BR2_i386 || BR2_x86_64
  7. depends on BR2_TOOLCHAIN_USES_GLIBC
  8. help
  9. The binary-only driver blob for AMD cards.
  10. This driver supports AMD Radeon HD 5xxx and newer graphics
  11. cards.
  12. http://www.amd.com/
  13. if BR2_PACKAGE_AMD_CATALYST
  14. comment "amd-catalyst X.org drivers needs a modular Xorg server <= 1.17"
  15. depends on !BR2_PACKAGE_XORG7 \
  16. || !BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR \
  17. || !BR2_PACKAGE_XSERVER_XORG_SERVER_VIDEODRV_ABI_19
  18. config BR2_PACKAGE_AMD_CATALYST_XORG
  19. bool "X.org drivers"
  20. default y
  21. depends on BR2_PACKAGE_XORG7
  22. depends on BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
  23. depends on BR2_PACKAGE_XSERVER_XORG_SERVER_VIDEODRV_ABI_19
  24. select BR2_PACKAGE_XSERVER_XORG_SERVER_AIGLX
  25. select BR2_PACKAGE_ACPID # runtime
  26. select BR2_PACKAGE_XLIB_LIBX11 # runtime
  27. select BR2_PACKAGE_XLIB_LIBXEXT # runtime
  28. select BR2_PACKAGE_XLIB_LIBXCOMPOSITE # runtime
  29. # This package does not have standard GL headers
  30. select BR2_PACKAGE_MESA3D_HEADERS
  31. select BR2_PACKAGE_HAS_LIBGL
  32. if BR2_PACKAGE_AMD_CATALYST_XORG
  33. config BR2_PACKAGE_PROVIDES_LIBGL
  34. default "amd-catalyst"
  35. config BR2_PACKAGE_AMD_CATALYST_CMDLINE_TOOLS
  36. bool "command-line configuration tools"
  37. help
  38. Build and install the AMD command line tools.
  39. endif
  40. comment "amd-catalyst kernel module needs a kernel to be built"
  41. depends on !BR2_LINUX_KERNEL
  42. config BR2_PACKAGE_AMD_CATALYST_MODULE
  43. bool "fglrx kernel module"
  44. depends on BR2_LINUX_KERNEL
  45. help
  46. Builds and install the fglrx kernel module
  47. config BR2_PACKAGE_AMD_CATALYST_OPENCL
  48. bool "OpenCL support"
  49. help
  50. Installs the OpenCL binary blobs and the ICD profile
  51. for GPGPU computing.
  52. endif # BR2_PACKAGE_AMD_CATALYST