add support for the AVR32 platform, namely the ATNGW100 board - joint work with wigyori
[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 config PROFILE_KCONFIG 
39         bool
40
41 # Architecture selection
42
43 config i386
44         bool
45         
46 config mips
47         select BIG_ENDIAN
48         bool
49
50 config mipsel
51         bool
52
53 config arm
54         bool
55
56 config armeb
57         select BIG_ENDIAN
58         bool
59
60 config avr32
61         select BIG_ENDIAN
62         bool
63
64 config cris
65         bool
66
67 config m68k
68         bool
69
70 config powerpc
71         select BIG_ENDIAN
72         bool
73
74 config sh3
75         bool
76
77 config sh3eb
78         select BIG_ENDIAN
79         bool
80
81 config sh4
82         bool
83
84 config sh4eb
85         select BIG_ENDIAN
86         bool
87
88 config sparc
89         select BIG_ENDIAN
90         bool
91
92 config x86_64
93         bool
94
95 config ARCH
96         string
97         default "arm"     if arm
98         default "armeb"   if armeb
99         default "avr32"   if avr32
100         default "cris"    if cris
101         default "i386"    if i386
102         default "m68k"    if m68k
103         default "mips"    if mips
104         default "mipsel"  if mipsel
105         default "powerpc" if powerpc
106         default "sh3"     if sh3
107         default "sh3eb"   if sh3eb
108         default "sh4"     if sh4
109         default "sh4eb"   if sh4eb
110         default "sparc"   if sparc
111         default "x86_64"  if x86_64
112