Initial OLPC target
[openwrt/svn-archive/archive.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 DISPLAY_SUPPORT
12 bool
13
14 config PCI_SUPPORT
15 bool
16
17 config PCMCIA_SUPPORT
18 bool
19
20 config USB_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 config USES_TGZ
36 bool
37
38 config PROFILE_KCONFIG
39 bool
40
41 # Architecture selection
42
43 config i386
44 bool
45
46 config i686
47 bool
48
49 config mips
50 select BIG_ENDIAN
51 bool
52
53 config mipsel
54 bool
55
56 config arm
57 bool
58
59 config armeb
60 select BIG_ENDIAN
61 bool
62
63 config avr32
64 select BIG_ENDIAN
65 bool
66
67 config cris
68 bool
69
70 config m68k
71 bool
72
73 config powerpc
74 select BIG_ENDIAN
75 bool
76
77 config sh3
78 bool
79
80 config sh3eb
81 select BIG_ENDIAN
82 bool
83
84 config sh4
85 bool
86
87 config sh4eb
88 select BIG_ENDIAN
89 bool
90
91 config sparc
92 select BIG_ENDIAN
93 bool
94
95 config x86_64
96 bool
97
98 config ARCH
99 string
100 default "arm" if arm
101 default "armeb" if armeb
102 default "avr32" if avr32
103 default "cris" if cris
104 default "i386" if i386
105 default "i686" if i686
106 default "m68k" if m68k
107 default "mips" if mips
108 default "mipsel" if mipsel
109 default "powerpc" if powerpc
110 default "sh3" if sh3
111 default "sh3eb" if sh3eb
112 default "sh4" if sh4
113 default "sh4eb" if sh4eb
114 default "sparc" if sparc
115 default "x86_64" if x86_64
116