blob: dd4df958cfe18cc9e48c5509158fb1942cfbe2c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
config ADK_KERNEL_FB
boolean
default n
config ADK_KERNEL_FRAMEBUFFER_CONSOLE
boolean
default n
config ADK_KERNEL_FB_GEODE
boolean
default n
config ADK_KERNEL_DRM
boolean
default n
config ADK_KERNEL_DRM_I915
boolean
default n
config ADK_KERNEL_DRM_I915_KMS
boolean
default n
config ADK_KERNEL_AGP
boolean
default n
config ADK_KERNEL_AGP_INTEL
boolean
default n
menu "Graphic devices support"
config ADK_KERNEL_FB_GEODE_LX
prompt "geode-fblx...................... Framebuffer support for ALIX boards with VGA"
tristate
select ADK_KERNEL_FB
select ADK_KERNEL_FRAMEBUFFER_CONSOLE
select ADK_KERNEL_FB_GEODE
default y if ADK_HARDWARE_ALIX1C
default n
help
Framebuffer support for ALIX boards.
config ADK_HARDWARE_GRAPHICS_INTEL
prompt "graphics-intel.................. support for intel graphic cards (AGP/DRM/KMS)"
boolean
select ADK_KERNEL_FB
select ADK_KERNEL_DRM
select ADK_KERNEL_AGP
select ADK_KERNEL_AGP_INTEL
select ADK_KERNEL_FRAMEBUFFER_CONSOLE
select ADK_KERNEL_DRM_I915_KMS
select ADK_KERNEL_DRM_I915
default y if ADK_HARDWARE_IBM_X40
default n
help
DRM support for intel chipsets.
endmenu
|