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