vserver 1.9.3
[linux-2.6.git] / arch / arm26 / Kconfig
1 #
2 # For a description of the syntax of this configuration file,
3 # see Documentation/kbuild/kconfig-language.txt.
4 #
5
6 mainmenu "Linux Kernel Configuration"
7
8 config ARM
9         bool
10         default y
11
12 config ARM26
13         bool
14         default y
15
16 config MMU
17         bool
18         default y
19
20 config ARCH_ACORN
21         bool
22         default y
23
24 config CPU_26
25         bool
26         default y
27
28 config FIQ
29         bool
30         default y
31
32 # 9 = 512 pages 8 = 256 pages 7 = 128 pages
33 config FORCE_MAX_ZONEORDER
34         int
35         default 9
36
37 config UID16
38         bool
39         default y
40
41 config RWSEM_GENERIC_SPINLOCK
42         bool
43         default y
44
45 config RWSEM_XCHGADD_ALGORITHM
46         bool
47
48 config GENERIC_BUST_SPINLOCK
49         bool
50
51 config GENERIC_ISA_DMA
52         bool
53
54 source "init/Kconfig"
55
56
57 menu "System Type"
58
59 comment "Archimedes/A5000 Implementations (select only ONE)"
60
61 config ARCH_ARC
62         bool "Archimedes"
63         help
64           Say Y to support the Acorn Archimedes.
65
66           The Acorn Archimedes was an personal computer based on an 8MHz ARM2
67           processor, released in 1987.  It supported up to 16MB of RAM in
68           later models and floppy, harddisc, ethernet etc.
69
70 config ARCH_A5K
71         bool "A5000"
72         help
73           Say Y here to to support the Acorn A5000.
74
75           Linux can support the
76           internal IDE disk and CD-ROM interface, serial and parallel port,
77           and the floppy drive.  Note that on some A5000s the floppy is
78           plugged into the wrong socket on the motherboard.
79
80 config PAGESIZE_16
81         bool "2MB physical memory (broken)"
82         help
83           Say Y here if your Archimedes or A5000 system has only 2MB of
84           memory, otherwise say N.  The resulting kernel will not run on a
85           machine with 4MB of memory.
86 endmenu
87
88 menu "General setup"
89
90 # Compressed boot loader in ROM.  Yes, we really want to ask about
91 # TEXT and BSS so we preserve their values in the config files.
92 config ZBOOT_ROM
93         bool "Compressed boot loader in ROM/flash"
94         help
95           Say Y here if you intend to execute your compressed kernel image (zImage)
96           directly from ROM or flash.  If unsure, say N.
97
98 config ZBOOT_ROM_TEXT
99         depends on ZBOOT_ROM
100         hex "Compressed ROM boot loader base address"
101         default "0"
102         help
103           The base address for zImage.  Unless you have special requirements, you
104           should not change this value.
105
106 config ZBOOT_ROM_BSS
107         depends on ZBOOT_ROM
108         hex "Compressed ROM boot loader BSS address"
109         default "0"
110         help
111           The base address of 64KiB of read/write memory, which must be available
112           while the decompressor is running.  Unless you have special requirements,
113           you should not change this value.
114
115 config XIP_KERNEL
116         bool "Execute In Place (XIP) kernel image"
117         help
118           Select this option to create a kernel that can be programed into
119           the OS ROMs.
120
121 comment "At least one math emulation must be selected"
122
123 config FPE_NWFPE
124         tristate "NWFPE math emulation"
125         ---help---
126           Say Y to include the NWFPE floating point emulator in the kernel.
127           This is necessary to run most binaries. Linux does not currently
128           support floating point hardware so you need to say Y here even if
129           your machine has an FPA or floating point co-processor podule.
130
131           It is also possible to say M to build the emulator as a module
132           (nwfpe) or indeed to leave it out altogether. However, unless you
133           know what you are doing this can easily render your machine
134           unbootable. Saying Y is the safe option.
135
136           You may say N here if you are going to load the Acorn FPEmulator
137           early in the bootup.
138
139 source "fs/Kconfig.binfmt"
140
141 config PREEMPT
142         bool "Preemptible Kernel (EXPERIMENTAL)"
143         depends on CPU_32 && EXPERIMENTAL
144         help
145           This option reduces the latency of the kernel when reacting to
146           real-time or interactive events by allowing a low priority process to
147           be preempted even if it is in kernel mode executing a system call.
148           This allows applications to run more reliably even when the system is
149           under load.
150
151           Say Y here if you are building a kernel for a desktop, embedded
152           or real-time system.  Say N if you are unsure.
153
154 config ARTHUR
155         tristate "RISC OS personality"
156         depends on CPU_32
157         help
158           Say Y here to include the kernel code necessary if you want to run
159           Acorn RISC OS/Arthur binaries under Linux. This code is still very
160           experimental; if this sounds frightening, say N and sleep in peace.
161           You can also say M here to compile this support as a module (which
162           will be called arthur).
163
164 config CMDLINE
165         string "Default kernel command string"
166         default ""
167         help
168           On some architectures (EBSA110 and CATS), there is currently no way
169           for the boot loader to pass arguments to the kernel. For these
170           architectures, you should supply some command-line options at build
171           time by entering them here. As a minimum, you should specify the
172           memory size and the root device (e.g., mem=64M root=/dev/nfs).
173
174 endmenu
175
176 source "drivers/base/Kconfig"
177
178 source "drivers/parport/Kconfig"
179
180 source "drivers/pnp/Kconfig"
181
182 source "drivers/block/Kconfig"
183
184 source "drivers/md/Kconfig"
185
186 source "net/Kconfig"
187
188 source "drivers/ide/Kconfig"
189
190 source "drivers/scsi/Kconfig"
191
192 source "drivers/isdn/Kconfig"
193
194 #
195 # input before char - char/joystick depends on it. As does USB.
196 #
197 source "drivers/input/Kconfig"
198
199 source "drivers/char/Kconfig"
200
201 source "drivers/media/Kconfig"
202
203 source "fs/Kconfig"
204
205 source "drivers/video/Kconfig"
206
207 if ARCH_ACORN
208
209 source "sound/Kconfig"
210
211 endif
212
213 source "drivers/misc/Kconfig"
214
215 source "drivers/usb/Kconfig"
216
217 source "arch/arm26/Kconfig.debug"
218
219 source "kernel/vserver/Kconfig"
220
221 source "security/Kconfig"
222
223 source "crypto/Kconfig"
224
225 source "lib/Kconfig"
226