Add support for building ubifs images.
[openwrt-10.03/.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 HAS_FPU
12         bool
13
14 config DISPLAY_SUPPORT
15         bool
16
17 config GPIO_SUPPORT
18         bool
19
20 config PCI_SUPPORT
21         bool
22
23 config PCIE_SUPPORT
24         bool
25
26 config PCMCIA_SUPPORT
27         bool
28
29 config USB_SUPPORT
30         bool
31
32 config BIG_ENDIAN
33         bool
34
35 config USES_INITRAMFS
36         bool
37
38 config USES_SQUASHFS
39         bool
40
41 config USES_JFFS2
42         bool
43
44 config USES_EXT2
45         bool
46
47 config USES_TGZ
48         bool
49
50 config USES_CPIOGZ
51         bool
52
53 config USES_UBIFS
54         bool
55
56 config PROFILE_KCONFIG
57         bool
58
59 config NOMMU
60         bool
61
62 # Architecture selection
63
64 config arm
65         bool
66
67 config armeb
68         select BIG_ENDIAN
69         bool
70
71 config avr32
72         select BIG_ENDIAN
73         bool
74
75 config cris
76         bool
77
78 config i386
79         bool
80
81 config i686
82         bool 
83
84 config m68k
85         bool
86
87 config mips
88         select BIG_ENDIAN
89         bool
90
91 config mipsel
92         bool
93
94 config mips64
95         select BIG_ENDIAN
96         bool
97
98 config mips64el
99         bool
100
101 config powerpc
102         select BIG_ENDIAN
103         bool
104
105 config powerpc64
106         select BIG_ENDIAN
107         bool
108
109 config sh3
110         bool
111
112 config sh3eb
113         select BIG_ENDIAN
114         bool
115
116 config sh4
117         bool
118
119 config sh4eb
120         select BIG_ENDIAN
121         bool
122
123 config sparc
124         select BIG_ENDIAN
125         bool
126
127 config ubicom32
128         select BIG_ENDIAN
129         bool
130
131 config x86_64
132         bool
133
134 config ARCH
135         string
136         default "arm"       if arm
137         default "armeb"     if armeb
138         default "avr32"     if avr32
139         default "cris"      if cris
140         default "i386"      if i386
141         default "i686"      if i686
142         default "m68k"      if m68k
143         default "mips"      if mips
144         default "mipsel"    if mipsel
145         default "mips64"    if mips64
146         default "mips64el"  if mips64el
147         default "powerpc"   if powerpc
148         default "sh3"       if sh3
149         default "sh3eb"     if sh3eb
150         default "sh4"       if sh4
151         default "sh4eb"     if sh4eb
152         default "sparc"     if sparc
153         default "ubicom32"  if ubicom32
154         default "x86_64"    if x86_64
155