rename packages dependecies missed from [8806]
[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 PCI_SUPPORT
12 bool
13
14 config PCMCIA_SUPPORT
15 bool
16
17 config USB_SUPPORT
18 bool
19
20 config BIG_ENDIAN
21 bool
22
23 config USES_SQUASHFS
24 bool
25
26 config USES_JFFS2
27 bool
28
29 config USES_EXT2
30 bool
31
32 config USES_TGZ
33 bool
34
35 config PROFILE_KCONFIG
36 bool
37
38 # Architecture selection
39
40 config i386
41 bool
42
43 config i686
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 "i686" if i686
103 default "m68k" if m68k
104 default "mips" if mips
105 default "mipsel" if mipsel
106 default "powerpc" if powerpc
107 default "sh3" if sh3
108 default "sh3eb" if sh3eb
109 default "sh4" if sh4
110 default "sh4eb" if sh4eb
111 default "sparc" if sparc
112 default "x86_64" if x86_64
113