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