Kconfig 642 B

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