Kconfig 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see Documentation/kbuild/kconfig-language.txt.
  4. #
  5. config ALPHA
  6. bool
  7. default y
  8. help
  9. The Alpha is a 64-bit general-purpose processor designed and
  10. marketed by the Digital Equipment Corporation of blessed memory,
  11. now Hewlett-Packard. The Alpha Linux project has a home page at
  12. <http://www.alphalinux.org/>.
  13. config 64BIT
  14. def_bool y
  15. config MMU
  16. bool
  17. default y
  18. config RWSEM_GENERIC_SPINLOCK
  19. bool
  20. config RWSEM_XCHGADD_ALGORITHM
  21. bool
  22. default y
  23. config ARCH_HAS_ILOG2_U32
  24. bool
  25. default n
  26. config ARCH_HAS_ILOG2_U64
  27. bool
  28. default n
  29. config GENERIC_FIND_NEXT_BIT
  30. bool
  31. default y
  32. config GENERIC_CALIBRATE_DELAY
  33. bool
  34. default y
  35. config ZONE_DMA
  36. bool
  37. default y
  38. config GENERIC_ISA_DMA
  39. bool
  40. default y
  41. config GENERIC_IOMAP
  42. bool
  43. default n
  44. config GENERIC_HARDIRQS
  45. bool
  46. default y
  47. config GENERIC_IRQ_PROBE
  48. bool
  49. default y
  50. config AUTO_IRQ_AFFINITY
  51. bool
  52. depends on SMP
  53. default y
  54. source "init/Kconfig"
  55. menu "System setup"
  56. choice
  57. prompt "Alpha system type"
  58. default ALPHA_GENERIC
  59. ---help---
  60. This is the system type of your hardware. A "generic" kernel will
  61. run on any supported Alpha system. However, if you configure a
  62. kernel for your specific system, it will be faster and smaller.
  63. To find out what type of Alpha system you have, you may want to
  64. check out the Linux/Alpha FAQ, accessible on the WWW from
  65. <http://www.alphalinux.org/>. In summary:
  66. Alcor/Alpha-XLT AS 600
  67. Alpha-XL XL-233, XL-266
  68. AlphaBook1 Alpha laptop
  69. Avanti AS 200, AS 205, AS 250, AS 255, AS 300, AS 400
  70. Cabriolet AlphaPC64, AlphaPCI64
  71. DP264 DP264
  72. EB164 EB164 21164 evaluation board
  73. EB64+ EB64+ 21064 evaluation board
  74. EB66 EB66 21066 evaluation board
  75. EB66+ EB66+ 21066 evaluation board
  76. Jensen DECpc 150, DEC 2000 model 300,
  77. DEC 2000 model 500
  78. LX164 AlphaPC164-LX
  79. Lynx AS 2100A
  80. Miata Personal Workstation 433a, 433au, 500a,
  81. 500au, 600a, or 600au
  82. Marvel AlphaServer ES47 / ES80 / GS1280
  83. Mikasa AS 1000
  84. Noname AXPpci33, UDB (Multia)
  85. Noritake AS 1000A, AS 600A, AS 800
  86. PC164 AlphaPC164
  87. Rawhide AS 1200, AS 4000, AS 4100
  88. Ruffian RPX164-2, AlphaPC164-UX, AlphaPC164-BX
  89. SX164 AlphaPC164-SX
  90. Sable AS 2000, AS 2100
  91. Shark DS 20L
  92. Takara Takara
  93. Titan AlphaServer ES45 / DS25
  94. Wildfire AlphaServer GS 40/80/160/320
  95. If you don't know what to do, choose "generic".
  96. config ALPHA_GENERIC
  97. bool "Generic"
  98. help
  99. A generic kernel will run on all supported Alpha hardware.
  100. config ALPHA_ALCOR
  101. bool "Alcor/Alpha-XLT"
  102. help
  103. For systems using the Digital ALCOR chipset: 5 chips (4, 64-bit data
  104. slices (Data Switch, DSW) - 208-pin PQFP and 1 control (Control, I/O
  105. Address, CIA) - a 383 pin plastic PGA). It provides a DRAM
  106. controller (256-bit memory bus) and a PCI interface. It also does
  107. all the work required to support an external Bcache and to maintain
  108. memory coherence when a PCI device DMAs into (or out of) memory.
  109. config ALPHA_XL
  110. bool "Alpha-XL"
  111. help
  112. XL-233 and XL-266-based Alpha systems.
  113. config ALPHA_BOOK1
  114. bool "AlphaBook1"
  115. help
  116. Dec AlphaBook1/Burns Alpha-based laptops.
  117. config ALPHA_AVANTI_CH
  118. bool "Avanti"
  119. config ALPHA_CABRIOLET
  120. bool "Cabriolet"
  121. help
  122. Cabriolet AlphaPC64, AlphaPCI64 systems. Derived from EB64+ but now
  123. baby-AT with Flash boot ROM, no on-board SCSI or Ethernet. 3 ISA
  124. slots, 4 PCI slots (one pair are on a shared slot), uses plug-in
  125. Bcache SIMMs. Requires power supply with 3.3V output.
  126. config ALPHA_DP264
  127. bool "DP264"
  128. help
  129. Various 21264 systems with the tsunami core logic chipset.
  130. API Networks: 264DP, UP2000(+), CS20;
  131. Compaq: DS10(E,L), XP900, XP1000, DS20(E), ES40.
  132. config ALPHA_EB164
  133. bool "EB164"
  134. help
  135. EB164 21164 evaluation board from DEC. Uses 21164 and ALCOR. Has
  136. ISA and PCI expansion (3 ISA slots, 2 64-bit PCI slots (one is
  137. shared with an ISA slot) and 2 32-bit PCI slots. Uses plus-in
  138. Bcache SIMMs. I/O sub-system provides SuperI/O (2S, 1P, FD), KBD,
  139. MOUSE (PS2 style), RTC/NVRAM. Boot ROM is Flash. PC-AT-sized
  140. motherboard. Requires power supply with 3.3V output.
  141. config ALPHA_EB64P_CH
  142. bool "EB64+"
  143. config ALPHA_EB66
  144. bool "EB66"
  145. help
  146. A Digital DS group board. Uses 21066 or 21066A. I/O sub-system is
  147. identical to EB64+. Baby PC-AT size. Runs from standard PC power
  148. supply. The EB66 schematic was published as a marketing poster
  149. advertising the 21066 as "the first microprocessor in the world with
  150. embedded PCI".
  151. config ALPHA_EB66P
  152. bool "EB66+"
  153. help
  154. Later variant of the EB66 board.
  155. config ALPHA_EIGER
  156. bool "Eiger"
  157. help
  158. Apparently an obscure OEM single-board computer based on the
  159. Typhoon/Tsunami chipset family. Information on it is scanty.
  160. config ALPHA_JENSEN
  161. bool "Jensen"
  162. help
  163. DEC PC 150 AXP (aka Jensen): This is a very old Digital system - one
  164. of the first-generation Alpha systems. A number of these systems
  165. seem to be available on the second- hand market. The Jensen is a
  166. floor-standing tower system which originally used a 150MHz 21064 It
  167. used programmable logic to interface a 486 EISA I/O bridge to the
  168. CPU.
  169. config ALPHA_LX164
  170. bool "LX164"
  171. help
  172. A technical overview of this board is available at
  173. <http://www.unix-ag.org/Linux-Alpha/Architectures/LX164.html>.
  174. config ALPHA_LYNX
  175. bool "Lynx"
  176. help
  177. AlphaServer 2100A-based systems.
  178. config ALPHA_MARVEL
  179. bool "Marvel"
  180. help
  181. AlphaServer ES47 / ES80 / GS1280 based on EV7.
  182. config ALPHA_MIATA
  183. bool "Miata"
  184. help
  185. The Digital PersonalWorkStation (PWS 433a, 433au, 500a, 500au, 600a,
  186. or 600au). There is an Installation HOWTO for this hardware at
  187. <http://eijk.homelinux.org/~stefan/miata.html>.
  188. config ALPHA_MIKASA
  189. bool "Mikasa"
  190. help
  191. AlphaServer 1000-based Alpha systems.
  192. config ALPHA_NAUTILUS
  193. bool "Nautilus"
  194. help
  195. Alpha systems based on the AMD 751 & ALI 1543C chipsets.
  196. config ALPHA_NONAME_CH
  197. bool "Noname"
  198. config ALPHA_NORITAKE
  199. bool "Noritake"
  200. help
  201. AlphaServer 1000A, AlphaServer 600A, and AlphaServer 800-based
  202. systems.
  203. config ALPHA_PC164
  204. bool "PC164"
  205. config ALPHA_P2K
  206. bool "Platform2000"
  207. config ALPHA_RAWHIDE
  208. bool "Rawhide"
  209. help
  210. AlphaServer 1200, AlphaServer 4000 and AlphaServer 4100 machines.
  211. See HOWTO at
  212. <http://www.alphalinux.org/docs/rawhide/4100_install.shtml>.
  213. config ALPHA_RUFFIAN
  214. bool "Ruffian"
  215. help
  216. Samsung APC164UX. There is a page on known problems and workarounds
  217. at <http://www.alphalinux.org/faq/FAQ-11.html>.
  218. config ALPHA_RX164
  219. bool "RX164"
  220. config ALPHA_SX164
  221. bool "SX164"
  222. config ALPHA_SABLE
  223. bool "Sable"
  224. help
  225. Digital AlphaServer 2000 and 2100-based systems.
  226. config ALPHA_SHARK
  227. bool "Shark"
  228. config ALPHA_TAKARA
  229. bool "Takara"
  230. help
  231. Alpha 11164-based OEM single-board computer.
  232. config ALPHA_TITAN
  233. bool "Titan"
  234. help
  235. AlphaServer ES45/DS25 SMP based on EV68 and Titan chipset.
  236. config ALPHA_WILDFIRE
  237. bool "Wildfire"
  238. help
  239. AlphaServer GS 40/80/160/320 SMP based on the EV67 core.
  240. endchoice
  241. # clear all implied options (don't want default values for those):
  242. # Most of these machines have ISA slots; not exactly sure which don't,
  243. # and this doesn't activate hordes of code, so do it always.
  244. config ISA
  245. bool
  246. default y
  247. help
  248. Find out whether you have ISA slots on your motherboard. ISA is the
  249. name of a bus system, i.e. the way the CPU talks to the other stuff
  250. inside your box. Other bus systems are PCI, EISA, MicroChannel
  251. (MCA) or VESA. ISA is an older system, now being displaced by PCI;
  252. newer boards don't support it. If you have ISA, say Y, otherwise N.
  253. config ISA_DMA_API
  254. bool
  255. default y
  256. config PCI
  257. bool
  258. depends on !ALPHA_JENSEN
  259. default y
  260. help
  261. Find out whether you have a PCI motherboard. PCI is the name of a
  262. bus system, i.e. the way the CPU talks to the other stuff inside
  263. your box. Other bus systems are ISA, EISA, MicroChannel (MCA) or
  264. VESA. If you have PCI, say Y, otherwise N.
  265. The PCI-HOWTO, available from
  266. <http://www.tldp.org/docs.html#howto>, contains valuable
  267. information about which PCI hardware does work under Linux and which
  268. doesn't.
  269. config PCI_DOMAINS
  270. bool
  271. default y
  272. config ALPHA_CORE_AGP
  273. bool
  274. depends on ALPHA_GENERIC || ALPHA_TITAN || ALPHA_MARVEL
  275. default y
  276. config ALPHA_NONAME
  277. bool
  278. depends on ALPHA_BOOK1 || ALPHA_NONAME_CH
  279. default y
  280. help
  281. The AXPpci33 (aka NoName), is based on the EB66 (includes the Multia
  282. UDB). This design was produced by Digital's Technical OEM (TOEM)
  283. group. It uses the 21066 processor running at 166MHz or 233MHz. It
  284. is a baby-AT size, and runs from a standard PC power supply. It has
  285. 5 ISA slots and 3 PCI slots (one pair are a shared slot). There are
  286. 2 versions, with either PS/2 or large DIN connectors for the
  287. keyboard.
  288. config ALPHA_EV4
  289. bool
  290. depends on ALPHA_JENSEN || (ALPHA_SABLE && !ALPHA_GAMMA) || ALPHA_LYNX || ALPHA_NORITAKE && !ALPHA_PRIMO || ALPHA_MIKASA && !ALPHA_PRIMO || ALPHA_CABRIOLET || ALPHA_AVANTI_CH || ALPHA_EB64P_CH || ALPHA_XL || ALPHA_NONAME || ALPHA_EB66 || ALPHA_EB66P || ALPHA_P2K
  291. default y if !ALPHA_LYNX
  292. config ALPHA_LCA
  293. bool
  294. depends on ALPHA_NONAME || ALPHA_EB66 || ALPHA_EB66P || ALPHA_P2K
  295. default y
  296. config ALPHA_APECS
  297. bool
  298. depends on !ALPHA_PRIMO && (ALPHA_NORITAKE || ALPHA_MIKASA) || ALPHA_CABRIOLET || ALPHA_AVANTI_CH || ALPHA_EB64P_CH || ALPHA_XL
  299. default y
  300. config ALPHA_EB64P
  301. bool
  302. depends on ALPHA_CABRIOLET || ALPHA_EB64P_CH
  303. default y
  304. help
  305. Uses 21064 or 21064A and APECs. Has ISA and PCI expansion (3 ISA,
  306. 2 PCI, one pair are on a shared slot). Supports 36-bit DRAM SIMs.
  307. ISA bus generated by Intel SaturnI/O PCI-ISA bridge. On-board SCSI
  308. (NCR 810 on PCI) Ethernet (Digital 21040), KBD, MOUSE (PS2 style),
  309. SuperI/O (2S, 1P, FD), RTC/NVRAM. Boot ROM is EPROM. PC-AT size.
  310. Runs from standard PC power supply.
  311. config ALPHA_EV5
  312. bool "EV5 CPU(s) (model 5/xxx)?" if ALPHA_LYNX
  313. default y if ALPHA_RX164 || ALPHA_RAWHIDE || ALPHA_MIATA || ALPHA_LX164 || ALPHA_SX164 || ALPHA_RUFFIAN || ALPHA_SABLE && ALPHA_GAMMA || ALPHA_NORITAKE && ALPHA_PRIMO || ALPHA_MIKASA && ALPHA_PRIMO || ALPHA_PC164 || ALPHA_TAKARA || ALPHA_EB164 || ALPHA_ALCOR
  314. config ALPHA_EV4
  315. bool
  316. default y if ALPHA_LYNX && !ALPHA_EV5
  317. config ALPHA_CIA
  318. bool
  319. depends on ALPHA_MIATA || ALPHA_LX164 || ALPHA_SX164 || ALPHA_RUFFIAN || ALPHA_NORITAKE && ALPHA_PRIMO || ALPHA_MIKASA && ALPHA_PRIMO || ALPHA_PC164 || ALPHA_TAKARA || ALPHA_EB164 || ALPHA_ALCOR
  320. default y
  321. config ALPHA_EV56
  322. bool "EV56 CPU (speed >= 366MHz)?" if ALPHA_ALCOR
  323. default y if ALPHA_RX164 || ALPHA_MIATA || ALPHA_LX164 || ALPHA_SX164 || ALPHA_RUFFIAN || ALPHA_PC164 || ALPHA_TAKARA
  324. config ALPHA_EV56
  325. prompt "EV56 CPU (speed >= 333MHz)?"
  326. depends on ALPHA_NORITAKE || ALPHA_PRIMO
  327. config ALPHA_EV56
  328. prompt "EV56 CPU (speed >= 400MHz)?"
  329. depends on ALPHA_RAWHIDE
  330. config ALPHA_PRIMO
  331. bool "EV5 CPU daughtercard (model 5/xxx)?"
  332. depends on ALPHA_NORITAKE || ALPHA_MIKASA
  333. help
  334. Say Y if you have an AS 1000 5/xxx or an AS 1000A 5/xxx.
  335. config ALPHA_GAMMA
  336. bool "EV5 CPU(s) (model 5/xxx)?"
  337. depends on ALPHA_SABLE
  338. help
  339. Say Y if you have an AS 2000 5/xxx or an AS 2100 5/xxx.
  340. config ALPHA_GAMMA
  341. bool
  342. depends on ALPHA_LYNX
  343. default y
  344. config ALPHA_T2
  345. bool
  346. depends on ALPHA_SABLE || ALPHA_LYNX
  347. default y
  348. config ALPHA_PYXIS
  349. bool
  350. depends on ALPHA_MIATA || ALPHA_LX164 || ALPHA_SX164 || ALPHA_RUFFIAN
  351. default y
  352. config ALPHA_EV6
  353. bool
  354. depends on ALPHA_NAUTILUS || ALPHA_WILDFIRE || ALPHA_TITAN || ALPHA_SHARK || ALPHA_DP264 || ALPHA_EIGER || ALPHA_MARVEL
  355. default y
  356. config ALPHA_TSUNAMI
  357. bool
  358. depends on ALPHA_SHARK || ALPHA_DP264 || ALPHA_EIGER
  359. default y
  360. config ALPHA_EV67
  361. bool "EV67 (or later) CPU (speed > 600MHz)?" if ALPHA_DP264 || ALPHA_EIGER
  362. default y if ALPHA_NAUTILUS || ALPHA_WILDFIRE || ALPHA_TITAN || ALPHA_SHARK || ALPHA_MARVEL
  363. help
  364. Is this a machine based on the EV67 core? If in doubt, select N here
  365. and the machine will be treated as an EV6.
  366. config ALPHA_EV7
  367. bool
  368. depends on ALPHA_MARVEL
  369. default y
  370. config ALPHA_MCPCIA
  371. bool
  372. depends on ALPHA_RAWHIDE
  373. default y
  374. config ALPHA_POLARIS
  375. bool
  376. depends on ALPHA_RX164
  377. default y
  378. config ALPHA_IRONGATE
  379. bool
  380. depends on ALPHA_NAUTILUS
  381. default y
  382. config GENERIC_HWEIGHT
  383. bool
  384. default y if !ALPHA_EV67
  385. config ALPHA_AVANTI
  386. bool
  387. depends on ALPHA_XL || ALPHA_AVANTI_CH
  388. default y
  389. help
  390. Avanti AS 200, AS 205, AS 250, AS 255, AS 300, and AS 400-based
  391. Alphas. Info at
  392. <http://www.unix-ag.org/Linux-Alpha/Architectures/Avanti.html>.
  393. config ALPHA_BROKEN_IRQ_MASK
  394. bool
  395. depends on ALPHA_GENERIC || ALPHA_PC164
  396. default y
  397. config ALPHA_SRM
  398. bool "Use SRM as bootloader" if ALPHA_CABRIOLET || ALPHA_AVANTI_CH || ALPHA_EB64P || ALPHA_PC164 || ALPHA_TAKARA || ALPHA_EB164 || ALPHA_ALCOR || ALPHA_MIATA || ALPHA_LX164 || ALPHA_SX164 || ALPHA_NAUTILUS || ALPHA_NONAME
  399. default y if ALPHA_JENSEN || ALPHA_MIKASA || ALPHA_SABLE || ALPHA_LYNX || ALPHA_NORITAKE || ALPHA_DP264 || ALPHA_RAWHIDE || ALPHA_EIGER || ALPHA_WILDFIRE || ALPHA_TITAN || ALPHA_SHARK || ALPHA_MARVEL
  400. ---help---
  401. There are two different types of booting firmware on Alphas: SRM,
  402. which is command line driven, and ARC, which uses menus and arrow
  403. keys. Details about the Linux/Alpha booting process are contained in
  404. the Linux/Alpha FAQ, accessible on the WWW from
  405. <http://www.alphalinux.org/>.
  406. The usual way to load Linux on an Alpha machine is to use MILO
  407. (a bootloader that lets you pass command line parameters to the
  408. kernel just like lilo does for the x86 architecture) which can be
  409. loaded either from ARC or can be installed directly as a permanent
  410. firmware replacement from floppy (which requires changing a certain
  411. jumper on the motherboard). If you want to do either of these, say N
  412. here. If MILO doesn't work on your system (true for Jensen
  413. motherboards), you can bypass it altogether and boot Linux directly
  414. from an SRM console; say Y here in order to do that. Note that you
  415. won't be able to boot from an IDE disk using SRM.
  416. If unsure, say N.
  417. config EISA
  418. bool
  419. depends on ALPHA_GENERIC || ALPHA_JENSEN || ALPHA_ALCOR || ALPHA_MIKASA || ALPHA_SABLE || ALPHA_LYNX || ALPHA_NORITAKE || ALPHA_RAWHIDE
  420. default y
  421. config ARCH_MAY_HAVE_PC_FDC
  422. def_bool y
  423. config SMP
  424. bool "Symmetric multi-processing support"
  425. depends on ALPHA_SABLE || ALPHA_LYNX || ALPHA_RAWHIDE || ALPHA_DP264 || ALPHA_WILDFIRE || ALPHA_TITAN || ALPHA_GENERIC || ALPHA_SHARK || ALPHA_MARVEL
  426. ---help---
  427. This enables support for systems with more than one CPU. If you have
  428. a system with only one CPU, like most personal computers, say N. If
  429. you have a system with more than one CPU, say Y.
  430. If you say N here, the kernel will run on single and multiprocessor
  431. machines, but will use only one CPU of a multiprocessor machine. If
  432. you say Y here, the kernel will run on many, but not all,
  433. singleprocessor machines. On a singleprocessor machine, the kernel
  434. will run faster if you say N here.
  435. See also the <file:Documentation/smp.txt>, and the SMP-HOWTO
  436. available at <http://www.tldp.org/docs.html#howto>.
  437. If you don't know what to do here, say N.
  438. config HAVE_DEC_LOCK
  439. bool
  440. depends on SMP
  441. default y
  442. config NR_CPUS
  443. int "Maximum number of CPUs (2-64)"
  444. range 2 64
  445. depends on SMP
  446. default "64"
  447. config ARCH_DISCONTIGMEM_ENABLE
  448. bool "Discontiguous Memory Support (EXPERIMENTAL)"
  449. depends on EXPERIMENTAL
  450. help
  451. Say Y to support efficient handling of discontiguous physical memory,
  452. for architectures which are either NUMA (Non-Uniform Memory Access)
  453. or have huge holes in the physical address space for other reasons.
  454. See <file:Documentation/vm/numa> for more.
  455. source "mm/Kconfig"
  456. config NUMA
  457. bool "NUMA Support (EXPERIMENTAL)"
  458. depends on DISCONTIGMEM && BROKEN
  459. help
  460. Say Y to compile the kernel to support NUMA (Non-Uniform Memory
  461. Access). This option is for configuring high-end multiprocessor
  462. server machines. If in doubt, say N.
  463. config NODES_SHIFT
  464. int
  465. default "7"
  466. depends on NEED_MULTIPLE_NODES
  467. # LARGE_VMALLOC is racy, if you *really* need it then fix it first
  468. config ALPHA_LARGE_VMALLOC
  469. bool
  470. ---help---
  471. Process creation and other aspects of virtual memory management can
  472. be streamlined if we restrict the kernel to one PGD for all vmalloc
  473. allocations. This equates to about 8GB.
  474. Under normal circumstances, this is so far and above what is needed
  475. as to be laughable. However, there are certain applications (such
  476. as benchmark-grade in-kernel web serving) that can make use of as
  477. much vmalloc space as is available.
  478. Say N unless you know you need gobs and gobs of vmalloc space.
  479. config VERBOSE_MCHECK
  480. bool "Verbose Machine Checks"
  481. config VERBOSE_MCHECK_ON
  482. int "Verbose Printing Mode (0=off, 1=on, 2=all)"
  483. depends on VERBOSE_MCHECK
  484. default 1
  485. ---help---
  486. This option allows the default printing mode to be set, and then
  487. possibly overridden by a boot command argument.
  488. For example, if one wanted the option of printing verbose
  489. machine checks, but wanted the default to be as if verbose
  490. machine check printing was turned off, then one would choose
  491. the printing mode to be 0. Then, upon reboot, one could add
  492. the boot command line "verbose_mcheck=1" to get the normal
  493. verbose machine check printing, or "verbose_mcheck=2" to get
  494. the maximum information available.
  495. Take the default (1) unless you want more control or more info.
  496. source "drivers/pci/Kconfig"
  497. source "drivers/eisa/Kconfig"
  498. source "drivers/pcmcia/Kconfig"
  499. config SRM_ENV
  500. tristate "SRM environment through procfs"
  501. depends on PROC_FS
  502. ---help---
  503. If you enable this option, a subdirectory inside /proc called
  504. /proc/srm_environment will give you access to the all important
  505. SRM environment variables (those which have a name) and also
  506. to all others (by their internal number).
  507. SRM is something like a BIOS for Alpha machines. There are some
  508. other such BIOSes, like AlphaBIOS, which this driver cannot
  509. support (hey, that's not SRM!).
  510. Despite the fact that this driver doesn't work on all Alphas (but
  511. only on those which have SRM as their firmware), it's save to
  512. build it even if your particular machine doesn't know about SRM
  513. (or if you intend to compile a generic kernel). It will simply
  514. not create those subdirectory in /proc (and give you some warning,
  515. of course).
  516. This driver is also available as a module and will be called
  517. srm_env then.
  518. source "fs/Kconfig.binfmt"
  519. endmenu
  520. source "net/Kconfig"
  521. source "drivers/Kconfig"
  522. source "fs/Kconfig"
  523. source "arch/alpha/oprofile/Kconfig"
  524. source "arch/alpha/Kconfig.debug"
  525. source "security/Kconfig"
  526. source "crypto/Kconfig"
  527. source "lib/Kconfig"