implement target profiles in menuconfig
[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 BIG_ENDIAN
24         bool
25
26 config USES_SQUASHFS
27         bool
28
29 config USES_JFFS2
30         bool
31
32 config USES_EXT2
33         bool
34
35 # Architecture selection
36
37 config i386
38         bool
39         
40 config mips
41         select BIG_ENDIAN
42         bool
43
44 config mipsel
45         bool
46
47 config arm
48         bool
49
50 config armeb
51         select BIG_ENDIAN
52         bool
53
54 config cris
55         bool
56
57 config m68k
58         bool
59
60 config powerpc
61         select BIG_ENDIAN
62         bool
63
64 config sh3
65         bool
66
67 config sh3eb
68         select BIG_ENDIAN
69         bool
70
71 config sh4
72         bool
73
74 config sh4eb
75         select BIG_ENDIAN
76         bool
77
78 config sparc
79         select BIG_ENDIAN
80         bool
81
82 config ARCH
83         string
84         default "arm"     if arm
85         default "armeb"   if armeb
86         default "cris"    if cris
87         default "i386"    if i386
88         default "m68k"    if m68k
89         default "mips"    if mips
90         default "mipsel"  if mipsel
91         default "powerpc" if powerpc
92         default "sh3"     if sh3
93         default "sh3eb"   if sh3eb
94         default "sh4"     if sh4
95         default "sh4eb"   if sh4eb
96         default "sparc"   if sparc
97