add missing VIDEO_SUPPORT option
[openwrt.git] / target / Config.in
1 source "tmp/.config-target.in"
2
3 # Kernel/Hardware features
4
5 config LINUX_2_4
6         bool
7
8 config LINUX_2_6
9         bool
10
11 config PCI_SUPPORT
12         bool
13
14 config PCMCIA_SUPPORT
15         bool
16
17 config USB_SUPPORT
18         bool
19
20 config ATM_SUPPORT
21         bool
22
23 config VIDEO_SUPPORT
24         bool
25
26 config BIG_ENDIAN
27         bool
28
29 config USES_SQUASHFS
30         bool
31
32 config USES_JFFS2
33         bool
34
35 config USES_EXT2
36         bool
37
38 # Architecture selection
39
40 config i386
41         bool
42         
43 config mips
44         select BIG_ENDIAN
45         bool
46
47 config mipsel
48         bool
49
50 config arm
51         bool
52
53 config armeb
54         select BIG_ENDIAN
55         bool
56
57 config cris
58         bool
59
60 config m68k
61         bool
62
63 config powerpc
64         select BIG_ENDIAN
65         bool
66
67 config sh3
68         bool
69
70 config sh3eb
71         select BIG_ENDIAN
72         bool
73
74 config sh4
75         bool
76
77 config sh4eb
78         select BIG_ENDIAN
79         bool
80
81 config sparc
82         select BIG_ENDIAN
83         bool
84
85 config ARCH
86         string
87         default "arm"     if arm
88         default "armeb"   if armeb
89         default "cris"    if cris
90         default "i386"    if i386
91         default "m68k"    if m68k
92         default "mips"    if mips
93         default "mipsel"  if mipsel
94         default "powerpc" if powerpc
95         default "sh3"     if sh3
96         default "sh3eb"   if sh3eb
97         default "sh4"     if sh4
98         default "sh4eb"   if sh4eb
99         default "sparc"   if sparc
100