Kconfig 844 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Video configuration
  4. #
  5. menu "Graphics support"
  6. config APERTURE_HELPERS
  7. bool
  8. help
  9. Support tracking and hand-over of aperture ownership. Required
  10. by graphics drivers for firmware-provided framebuffers.
  11. if HAS_IOMEM
  12. config HAVE_FB_ATMEL
  13. bool
  14. source "drivers/char/agp/Kconfig"
  15. source "drivers/gpu/vga/Kconfig"
  16. source "drivers/gpu/host1x/Kconfig"
  17. source "drivers/gpu/ipu-v3/Kconfig"
  18. source "drivers/gpu/drm/Kconfig"
  19. menu "Frame buffer Devices"
  20. source "drivers/video/fbdev/Kconfig"
  21. endmenu
  22. source "drivers/video/backlight/Kconfig"
  23. config VGASTATE
  24. tristate
  25. default n
  26. config VIDEOMODE_HELPERS
  27. bool
  28. config HDMI
  29. bool
  30. endif # HAS_IOMEM
  31. if VT
  32. source "drivers/video/console/Kconfig"
  33. endif
  34. if FB || SGI_NEWPORT_CONSOLE
  35. source "drivers/video/logo/Kconfig"
  36. endif
  37. endmenu