Add FEATURE ramdisk to be able to select the use of INITRAMFS for a sub-target
[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 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 PCMCIA_SUPPORT
24         bool
25
26 config USB_SUPPORT
27         bool
28
29 config BIG_ENDIAN
30         bool
31
32 config USES_INITRAMFS
33         bool
34
35 config USES_SQUASHFS
36         bool
37
38 config USES_JFFS2
39         bool
40
41 config USES_EXT2
42         bool
43
44 config USES_TGZ
45         bool
46
47 config USES_CPIOGZ
48         bool
49
50 config PROFILE_KCONFIG 
51         bool
52
53 # Architecture selection
54
55 config i386
56         bool
57
58 config i686
59         bool 
60
61 config mips
62         select BIG_ENDIAN
63         bool
64
65 config mipsel
66         bool
67
68 config arm
69         bool
70
71 config armeb
72         select BIG_ENDIAN
73         bool
74
75 config avr32
76         select BIG_ENDIAN
77         bool
78
79 config cris
80         bool
81
82 config m68k
83         bool
84
85 config powerpc
86         select BIG_ENDIAN
87         bool
88
89 config sh3
90         bool
91
92 config sh3eb
93         select BIG_ENDIAN
94         bool
95
96 config sh4
97         bool
98
99 config sh4eb
100         select BIG_ENDIAN
101         bool
102
103 config sparc
104         select BIG_ENDIAN
105         bool
106
107 config x86_64
108         bool
109
110 config ARCH
111         string
112         default "arm"     if arm
113         default "armeb"   if armeb
114         default "avr32"   if avr32
115         default "cris"    if cris
116         default "i386"    if i386
117         default "i686"    if i686
118         default "m68k"    if m68k
119         default "mips"    if mips
120         default "mipsel"  if mipsel
121         default "powerpc" if powerpc
122         default "sh3"     if sh3
123         default "sh3eb"   if sh3eb
124         default "sh4"     if sh4
125         default "sh4eb"   if sh4eb
126         default "sparc"   if sparc
127         default "x86_64"  if x86_64
128