Kconfig 682 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Video configuration
  4. #
  5. menu "Graphics support"
  6. if HAS_IOMEM
  7. config HAVE_FB_ATMEL
  8. bool
  9. source "drivers/char/agp/Kconfig"
  10. source "drivers/gpu/vga/Kconfig"
  11. source "drivers/gpu/host1x/Kconfig"
  12. source "drivers/gpu/ipu-v3/Kconfig"
  13. source "drivers/gpu/drm/Kconfig"
  14. menu "Frame buffer Devices"
  15. source "drivers/video/fbdev/Kconfig"
  16. endmenu
  17. source "drivers/video/backlight/Kconfig"
  18. config VGASTATE
  19. tristate
  20. default n
  21. config VIDEOMODE_HELPERS
  22. bool
  23. config HDMI
  24. bool
  25. endif # HAS_IOMEM
  26. if VT
  27. source "drivers/video/console/Kconfig"
  28. endif
  29. if FB || SGI_NEWPORT_CONSOLE
  30. source "drivers/video/logo/Kconfig"
  31. endif
  32. endmenu