Kconfig 19 KB

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