powerpc: Create a powerpc64 config feature
[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 PROFILE_KCONFIG 
54         bool
55
56 # Architecture selection
57
58 config i386
59         bool
60
61 config i686
62         bool 
63
64 config m68k
65         select BIG_ENDIAN
66         bool
67
68 config mips
69         select BIG_ENDIAN
70         bool
71
72 config mipsel
73         bool
74
75 config mips64
76         select BIG_ENDIAN
77         bool
78
79 config mips64el
80         bool
81
82 config arm
83         bool
84
85 config armeb
86         select BIG_ENDIAN
87         bool
88
89 config avr32
90         select BIG_ENDIAN
91         bool
92
93 config cris
94         bool
95
96 config m68k
97         bool
98
99 config powerpc
100         select BIG_ENDIAN
101         bool
102
103 config powerpc64
104         bool
105
106 config sh3
107         bool
108
109 config sh3eb
110         select BIG_ENDIAN
111         bool
112
113 config sh4
114         bool
115
116 config sh4eb
117         select BIG_ENDIAN
118         bool
119
120 config sparc
121         select BIG_ENDIAN
122         bool
123
124 config x86_64
125         bool
126
127 config ARCH
128         string
129         default "arm"     if arm
130         default "armeb"   if armeb
131         default "avr32"   if avr32
132         default "cris"    if cris
133         default "i386"    if i386
134         default "i686"    if i686
135         default "m68k"    if m68k
136         default "mips"    if mips
137         default "mipsel"  if mipsel
138         default "mips64"  if mips64
139         default "mips64el" if mips64el
140         default "powerpc" if powerpc
141         default "sh3"     if sh3
142         default "sh3eb"   if sh3eb
143         default "sh4"     if sh4
144         default "sh4eb"   if sh4eb
145         default "sparc"   if sparc
146         default "x86_64"  if x86_64
147