[base-files]: On shutdown disabled every mounted swap device.
[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 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 PCMCIA_SUPPORT
24 bool
25
26 config USB_SUPPORT
27 bool
28
29 config BIG_ENDIAN
30 bool
31
32 config USES_SQUASHFS
33 bool
34
35 config USES_JFFS2
36 bool
37
38 config USES_EXT2
39 bool
40
41 config USES_TGZ
42 bool
43
44 config USES_CPIOGZ
45 bool
46
47 config PROFILE_KCONFIG
48 bool
49
50 # Architecture selection
51
52 config i386
53 bool
54
55 config i686
56 bool
57
58 config mips
59 select BIG_ENDIAN
60 bool
61
62 config mipsel
63 bool
64
65 config arm
66 bool
67
68 config armeb
69 select BIG_ENDIAN
70 bool
71
72 config avr32
73 select BIG_ENDIAN
74 bool
75
76 config cris
77 bool
78
79 config m68k
80 bool
81
82 config powerpc
83 select BIG_ENDIAN
84 bool
85
86 config sh3
87 bool
88
89 config sh3eb
90 select BIG_ENDIAN
91 bool
92
93 config sh4
94 bool
95
96 config sh4eb
97 select BIG_ENDIAN
98 bool
99
100 config sparc
101 select BIG_ENDIAN
102 bool
103
104 config x86_64
105 bool
106
107 config ARCH
108 string
109 default "arm" if arm
110 default "armeb" if armeb
111 default "avr32" if avr32
112 default "cris" if cris
113 default "i386" if i386
114 default "i686" if i686
115 default "m68k" if m68k
116 default "mips" if mips
117 default "mipsel" if mipsel
118 default "powerpc" if powerpc
119 default "sh3" if sh3
120 default "sh3eb" if sh3eb
121 default "sh4" if sh4
122 default "sh4eb" if sh4eb
123 default "sparc" if sparc
124 default "x86_64" if x86_64
125