1# 2# Video configuration 3# 4 5menu "Graphics support" 6 7if HAS_IOMEM 8 9config HAVE_FB_ATMEL 10 bool 11 12source "drivers/char/agp/Kconfig" 13 14source "drivers/gpu/vga/Kconfig" 15 16source "drivers/gpu/host1x/Kconfig" 17source "drivers/gpu/ipu-v3/Kconfig" 18 19source "drivers/gpu/drm/Kconfig" 20 21menu "Frame buffer Devices" 22source "drivers/video/fbdev/Kconfig" 23endmenu 24 25source "drivers/video/backlight/Kconfig" 26 27config VGASTATE 28 tristate 29 default n 30 31config VIDEOMODE_HELPERS 32 bool 33 34config HDMI 35 bool 36 37endif # HAS_IOMEM 38 39if VT 40 source "drivers/video/console/Kconfig" 41endif 42 43if FB || SGI_NEWPORT_CONSOLE 44 source "drivers/video/logo/Kconfig" 45 46endif 47 48 49endmenu 50