Kconfig 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337
  1. # $Id: config.in,v 1.113 2002/01/24 22:14:44 davem Exp $
  2. # For a description of the syntax of this configuration file,
  3. # see Documentation/kbuild/kconfig-language.txt.
  4. #
  5. mainmenu "Linux/SPARC Kernel Configuration"
  6. config MMU
  7. bool
  8. default y
  9. config HIGHMEM
  10. bool
  11. default y
  12. config ZONE_DMA
  13. bool
  14. default y
  15. config GENERIC_ISA_DMA
  16. bool
  17. default y
  18. config ARCH_NO_VIRT_TO_BUS
  19. def_bool y
  20. config OF
  21. def_bool y
  22. config ARCH_SUPPORTS_AOUT
  23. def_bool y
  24. config HZ
  25. int
  26. default 100
  27. source "init/Kconfig"
  28. menu "General machine setup"
  29. config SMP
  30. bool "Symmetric multi-processing support (does not work on sun4/sun4c)"
  31. ---help---
  32. This enables support for systems with more than one CPU. If you have
  33. a system with only one CPU, say N. If you have a system with more
  34. than one CPU, say Y.
  35. If you say N here, the kernel will run on single and multiprocessor
  36. machines, but will use only one CPU of a multiprocessor machine. If
  37. you say Y here, the kernel will run on many, but not all,
  38. singleprocessor machines. On a singleprocessor machine, the kernel
  39. will run faster if you say N here.
  40. People using multiprocessor machines who say Y here should also say
  41. Y to "Enhanced Real Time Clock Support", below. The "Advanced Power
  42. Management" code will be disabled if you say Y here.
  43. See also <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO
  44. available at <http://www.tldp.org/docs.html#howto>.
  45. If you don't know what to do here, say N.
  46. config NR_CPUS
  47. int "Maximum number of CPUs (2-32)"
  48. range 2 32
  49. depends on SMP
  50. default "32"
  51. config SPARC
  52. bool
  53. default y
  54. select HAVE_IDE
  55. select HAVE_OPROFILE
  56. # Identify this as a Sparc32 build
  57. config SPARC32
  58. bool
  59. default y
  60. help
  61. SPARC is a family of RISC microprocessors designed and marketed by
  62. Sun Microsystems, incorporated. They are very widely found in Sun
  63. workstations and clones. This port covers the original 32-bit SPARC;
  64. it is old and stable and usually considered one of the "big three"
  65. along with the Intel and Alpha ports. The UltraLinux project
  66. maintains both the SPARC32 and SPARC64 ports; its web page is
  67. available at <http://www.ultralinux.org/>.
  68. # Global things across all Sun machines.
  69. config ISA
  70. bool
  71. help
  72. ISA is found on Espresso only and is not supported currently.
  73. Say N
  74. config EISA
  75. bool
  76. help
  77. EISA is not supported.
  78. Say N
  79. config MCA
  80. bool
  81. help
  82. MCA is not supported.
  83. Say N
  84. config PCMCIA
  85. tristate
  86. ---help---
  87. Say Y here if you want to attach PCMCIA- or PC-cards to your Linux
  88. computer. These are credit-card size devices such as network cards,
  89. modems or hard drives often used with laptops computers. There are
  90. actually two varieties of these cards: the older 16 bit PCMCIA cards
  91. and the newer 32 bit CardBus cards. If you want to use CardBus
  92. cards, you need to say Y here and also to "CardBus support" below.
  93. To use your PC-cards, you will need supporting software from David
  94. Hinds' pcmcia-cs package (see the file <file:Documentation/Changes>
  95. for location). Please also read the PCMCIA-HOWTO, available from
  96. <http://www.tldp.org/docs.html#howto>.
  97. To compile this driver as modules, choose M here: the
  98. modules will be called pcmcia_core and ds.
  99. config SBUS
  100. bool
  101. default y
  102. config SBUSCHAR
  103. bool
  104. default y
  105. config SERIAL_CONSOLE
  106. bool
  107. default y
  108. ---help---
  109. If you say Y here, it will be possible to use a serial port as the
  110. system console (the system console is the device which receives all
  111. kernel messages and warnings and which allows logins in single user
  112. mode). This could be useful if some terminal or printer is connected
  113. to that serial port.
  114. Even if you say Y here, the currently visible virtual console
  115. (/dev/tty0) will still be used as the system console by default, but
  116. you can alter that using a kernel command line option such as
  117. "console=ttyS1". (Try "man bootparam" or see the documentation of
  118. your boot loader (silo) about how to pass options to the kernel at
  119. boot time.)
  120. If you don't have a graphics card installed and you say Y here, the
  121. kernel will automatically use the first serial line, /dev/ttyS0, as
  122. system console.
  123. If unsure, say N.
  124. config SUN_AUXIO
  125. bool
  126. default y
  127. config SUN_IO
  128. bool
  129. default y
  130. config RWSEM_GENERIC_SPINLOCK
  131. bool
  132. default y
  133. config RWSEM_XCHGADD_ALGORITHM
  134. bool
  135. config GENERIC_FIND_NEXT_BIT
  136. bool
  137. default y
  138. config GENERIC_HWEIGHT
  139. bool
  140. default y
  141. config GENERIC_CALIBRATE_DELAY
  142. bool
  143. default y
  144. config ARCH_MAY_HAVE_PC_FDC
  145. bool
  146. default y
  147. config ARCH_HAS_ILOG2_U32
  148. bool
  149. default n
  150. config ARCH_HAS_ILOG2_U64
  151. bool
  152. default n
  153. config EMULATED_CMPXCHG
  154. bool
  155. default y
  156. help
  157. Sparc32 does not have a CAS instruction like sparc64. cmpxchg()
  158. is emulated, and therefore it is not completely atomic.
  159. config SUN_PM
  160. bool
  161. default y
  162. help
  163. Enable power management and CPU standby features on supported
  164. SPARC platforms.
  165. config SUN4
  166. bool "Support for SUN4 machines (disables SUN4[CDM] support)"
  167. depends on !SMP
  168. default n
  169. help
  170. Say Y here if, and only if, your machine is a sun4. Note that
  171. a kernel compiled with this option will run only on sun4.
  172. (And the current version will probably work only on sun4/330.)
  173. if !SUN4
  174. config PCI
  175. bool "Support for PCI and PS/2 keyboard/mouse"
  176. help
  177. CONFIG_PCI is needed for all JavaStation's (including MrCoffee),
  178. CP-1200, JavaEngine-1, Corona, Red October, and Serengeti SGSC.
  179. All of these platforms are extremely obscure, so say N if unsure.
  180. config PCI_SYSCALL
  181. def_bool PCI
  182. source "drivers/pci/Kconfig"
  183. endif
  184. config NO_DMA
  185. def_bool !PCI
  186. config SUN_OPENPROMFS
  187. tristate "Openprom tree appears in /proc/openprom"
  188. help
  189. If you say Y, the OpenPROM device tree will be available as a
  190. virtual file system, which you can mount to /proc/openprom by "mount
  191. -t openpromfs none /proc/openprom".
  192. To compile the /proc/openprom support as a module, choose M here: the
  193. module will be called openpromfs.
  194. Only choose N if you know in advance that you will not need to modify
  195. OpenPROM settings on the running system.
  196. config SPARC_LED
  197. tristate "Sun4m LED driver"
  198. help
  199. This driver toggles the front-panel LED on sun4m systems
  200. in a user-specifiable manner. Its state can be probed
  201. by reading /proc/led and its blinking mode can be changed
  202. via writes to /proc/led
  203. source "fs/Kconfig.binfmt"
  204. config SUNOS_EMUL
  205. bool "SunOS binary emulation"
  206. help
  207. This allows you to run most SunOS binaries. If you want to do this,
  208. say Y here and place appropriate files in /usr/gnemul/sunos. See
  209. <http://www.ultralinux.org/faq.html> for more information. If you
  210. want to run SunOS binaries on an Ultra you must also say Y to
  211. "Kernel support for 32-bit a.out binaries" above.
  212. source "mm/Kconfig"
  213. endmenu
  214. source "net/Kconfig"
  215. source "drivers/Kconfig"
  216. if !SUN4
  217. source "drivers/sbus/char/Kconfig"
  218. endif
  219. # This one must be before the filesystem configs. -DaveM
  220. menu "Unix98 PTY support"
  221. config UNIX98_PTYS
  222. bool "Unix98 PTY support"
  223. ---help---
  224. A pseudo terminal (PTY) is a software device consisting of two
  225. halves: a master and a slave. The slave device behaves identical to
  226. a physical terminal; the master device is used by a process to
  227. read data from and write data to the slave, thereby emulating a
  228. terminal. Typical programs for the master side are telnet servers
  229. and xterms.
  230. Linux has traditionally used the BSD-like names /dev/ptyxx for
  231. masters and /dev/ttyxx for slaves of pseudo terminals. This scheme
  232. has a number of problems. The GNU C library glibc 2.1 and later,
  233. however, supports the Unix98 naming standard: in order to acquire a
  234. pseudo terminal, a process opens /dev/ptmx; the number of the pseudo
  235. terminal is then made available to the process and the pseudo
  236. terminal slave can be accessed as /dev/pts/<number>. What was
  237. traditionally /dev/ttyp2 will then be /dev/pts/2, for example.
  238. The entries in /dev/pts/ are created on the fly by a virtual
  239. file system; therefore, if you say Y here you should say Y to
  240. "/dev/pts file system for Unix98 PTYs" as well.
  241. If you want to say Y here, you need to have the C library glibc 2.1
  242. or later (equal to libc-6.1, check with "ls -l /lib/libc.so.*").
  243. Read the instructions in <file:Documentation/Changes> pertaining to
  244. pseudo terminals. It's safe to say N.
  245. config UNIX98_PTY_COUNT
  246. int "Maximum number of Unix98 PTYs in use (0-2048)"
  247. depends on UNIX98_PTYS
  248. default "256"
  249. help
  250. The maximum number of Unix98 PTYs that can be used at any one time.
  251. The default is 256, and should be enough for desktop systems. Server
  252. machines which support incoming telnet/rlogin/ssh connections and/or
  253. serve several X terminals may want to increase this: every incoming
  254. connection and every xterm uses up one PTY.
  255. When not in use, each additional set of 256 PTYs occupy
  256. approximately 8 KB of kernel memory on 32-bit architectures.
  257. endmenu
  258. source "fs/Kconfig"
  259. source "arch/sparc/Kconfig.debug"
  260. source "security/Kconfig"
  261. source "crypto/Kconfig"
  262. source "lib/Kconfig"