add initial support for the crisarchitecture used on foxboards to openwrt
[openwrt/staging/chunkeey.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 cris
61 bool
62
63 config m68k
64 bool
65
66 config powerpc
67 select BIG_ENDIAN
68 bool
69
70 config sh3
71 bool
72
73 config sh3eb
74 select BIG_ENDIAN
75 bool
76
77 config sh4
78 bool
79
80 config sh4eb
81 select BIG_ENDIAN
82 bool
83
84 config sparc
85 select BIG_ENDIAN
86 bool
87
88 config x86_64
89 bool
90
91 config ARCH
92 string
93 default "arm" if arm
94 default "armeb" if armeb
95 default "cris" if cris
96 default "i386" if i386
97 default "m68k" if m68k
98 default "mips" if mips
99 default "mipsel" if mipsel
100 default "powerpc" if powerpc
101 default "sh3" if sh3
102 default "sh3eb" if sh3eb
103 default "sh4" if sh4
104 default "sh4eb" if sh4eb
105 default "sparc" if sparc
106 default "x86_64" if x86_64
107