Kconfig 19 KB

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