config.in
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:8k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. # $Id: config.in,v 1.111 2001/06/01 08:12:10 davem Exp $
  2. # For a description of the syntax of this configuration file,
  3. # see Documentation/kbuild/config-language.txt.
  4. #
  5. mainmenu_name "Linux/SPARC Kernel Configuration"
  6. define_bool CONFIG_UID16 y
  7. define_bool CONFIG_HIGHMEM y
  8. define_bool CONFIG_GENERIC_ISA_DMA y
  9. mainmenu_option next_comment
  10. comment 'Code maturity level options'
  11. bool 'Prompt for development and/or incomplete code/drivers' CONFIG_EXPERIMENTAL
  12. endmenu
  13. mainmenu_option next_comment
  14. comment 'Loadable module support'
  15. bool 'Enable loadable module support' CONFIG_MODULES
  16. if [ "$CONFIG_MODULES" = "y" ]; then
  17.    bool '  Set version information on all symbols for modules' CONFIG_MODVERSIONS
  18.    bool '  Kernel module loader' CONFIG_KMOD
  19. fi
  20. endmenu
  21. mainmenu_option next_comment
  22. comment 'General setup'
  23. define_bool CONFIG_VT y
  24. define_bool CONFIG_VT_CONSOLE y
  25. bool 'Symmetric multi-processing support (does not work on sun4/sun4c)' CONFIG_SMP
  26. # Identify this as a Sparc32 build
  27. define_bool CONFIG_SPARC32 y
  28. # Global things across all Sun machines.
  29. define_bool CONFIG_ISA n
  30. define_bool CONFIG_EISA n
  31. define_bool CONFIG_MCA n
  32. define_bool CONFIG_PCMCIA n
  33. define_bool CONFIG_SBUS y
  34. define_bool CONFIG_SBUSCHAR y
  35. define_bool CONFIG_BUSMOUSE y
  36. define_bool CONFIG_SUN_MOUSE y
  37. define_bool CONFIG_SERIAL y
  38. define_bool CONFIG_SUN_SERIAL y
  39. define_bool CONFIG_SERIAL_CONSOLE y
  40. define_bool CONFIG_SUN_KEYBOARD y
  41. define_bool CONFIG_SUN_CONSOLE y
  42. define_bool CONFIG_SUN_AUXIO y
  43. define_bool CONFIG_SUN_IO y
  44. define_bool CONFIG_RWSEM_GENERIC_SPINLOCK y
  45. define_bool CONFIG_RWSEM_XCHGADD_ALGORITHM n
  46. bool 'Support for SUN4 machines (disables SUN4[CDM] support)' CONFIG_SUN4
  47. if [ "$CONFIG_SUN4" != "y" ]; then
  48.    bool 'Support for PCI and PS/2 keyboard/mouse' CONFIG_PCI
  49.    source drivers/pci/Config.in
  50. else
  51.    define_bool CONFIG_PCI n
  52. fi
  53. tristate 'Openprom tree appears in /proc/openprom' CONFIG_SUN_OPENPROMFS
  54. bool 'Networking support' CONFIG_NET
  55. bool 'System V IPC' CONFIG_SYSVIPC
  56. bool 'BSD Process Accounting' CONFIG_BSD_PROCESS_ACCT
  57. bool 'Sysctl support' CONFIG_SYSCTL
  58. if [ "$CONFIG_PROC_FS" = "y" ]; then
  59.    define_bool CONFIG_KCORE_ELF y
  60. fi
  61. tristate 'Kernel support for a.out binaries' CONFIG_BINFMT_AOUT
  62. tristate 'Kernel support for ELF binaries' CONFIG_BINFMT_ELF
  63. tristate 'Kernel support for MISC binaries' CONFIG_BINFMT_MISC
  64. bool 'SunOS binary emulation' CONFIG_SUNOS_EMUL
  65. source drivers/parport/Config.in
  66. dep_tristate '  Parallel printer support' CONFIG_PRINTER $CONFIG_PARPORT
  67. endmenu
  68. mainmenu_option next_comment
  69. comment 'Console drivers'
  70. bool 'PROM console' CONFIG_PROM_CONSOLE
  71. source drivers/video/Config.in
  72. endmenu
  73. source drivers/mtd/Config.in
  74. if [ "$CONFIG_SUN4" != "y" ]; then
  75.    source drivers/sbus/char/Config.in
  76.    source drivers/sbus/audio/Config.in
  77. fi
  78. mainmenu_option next_comment
  79. comment 'Block devices'
  80. bool 'Normal floppy disk support' CONFIG_BLK_DEV_FD
  81. tristate 'Loopback device support' CONFIG_BLK_DEV_LOOP
  82. dep_tristate 'Network block device support' CONFIG_BLK_DEV_NBD $CONFIG_NET
  83. #tristate 'Logical volume manager (LVM) support' CONFIG_BLK_DEV_LVM N
  84. #if [ "$CONFIG_BLK_DEV_LVM" != "n" ]; then
  85. #   bool '   LVM information in proc filesystem' CONFIG_LVM_PROC_FS Y
  86. #fi
  87. source drivers/md/Config.in
  88. tristate 'RAM disk support' CONFIG_BLK_DEV_RAM
  89. if [ "$CONFIG_BLK_DEV_RAM" = "y" -o "$CONFIG_BLK_DEV_RAM" = "m" ]; then
  90. int '   Default RAM disk size' CONFIG_BLK_DEV_RAM_SIZE 4096
  91. fi
  92. dep_bool '  Initial RAM disk (initrd) support' CONFIG_BLK_DEV_INITRD $CONFIG_BLK_DEV_RAM
  93. endmenu
  94. if [ "$CONFIG_NET" = "y" ]; then
  95.    source net/Config.in
  96. fi
  97. # Don't frighten a common SBus user
  98. if [ "$CONFIG_PCI" = "y" ]; then
  99.   mainmenu_option next_comment
  100.   comment 'ATA/IDE/MFM/RLL support'
  101.   tristate 'ATA/IDE/MFM/RLL support' CONFIG_IDE
  102.   if [ "$CONFIG_IDE" != "n" ]; then
  103.     source drivers/ide/Config.in
  104.   else
  105.     define_bool CONFIG_BLK_DEV_IDE_MODES n
  106.     define_bool CONFIG_BLK_DEV_HD n
  107.   fi
  108.   endmenu
  109. else
  110.   define_bool CONFIG_IDE n
  111.   define_bool CONFIG_BLK_DEV_IDE_MODES n
  112.   define_bool CONFIG_BLK_DEV_HD n
  113. fi
  114. mainmenu_option next_comment
  115. comment 'ISDN subsystem'
  116. tristate 'ISDN support' CONFIG_ISDN
  117. if [ "$CONFIG_ISDN" != "n" ]; then
  118.    source drivers/isdn/Config.in
  119. fi
  120. endmenu
  121. mainmenu_option next_comment
  122. comment 'SCSI support'
  123. tristate 'SCSI support' CONFIG_SCSI
  124. if [ "$CONFIG_SCSI" != "n" ]; then
  125.    comment 'SCSI support type (disk, tape, CDrom)'
  126.    dep_tristate '  SCSI disk support' CONFIG_BLK_DEV_SD $CONFIG_SCSI
  127.    if [ "$CONFIG_BLK_DEV_SD" != "n" ]; then
  128.       int  'Maximum number of SCSI disks that can be loaded as modules' CONFIG_SD_EXTRA_DEVS 40
  129.    fi
  130.    dep_tristate '  SCSI tape support' CONFIG_CHR_DEV_ST $CONFIG_SCSI
  131.    dep_tristate '  SCSI OnStream SC-x0 tape support' CONFIG_CHR_DEV_OSST $CONFIG_SCSI
  132.    dep_tristate '  SCSI CDROM support' CONFIG_BLK_DEV_SR $CONFIG_SCSI
  133.    if [ "$CONFIG_BLK_DEV_SR" != "n" ]; then
  134.       bool '    Enable vendor-specific extensions (for SCSI CDROM)' CONFIG_BLK_DEV_SR_VENDOR
  135.       int  'Maximum number of CDROM devices that can be loaded as modules' CONFIG_SR_EXTRA_DEVS 2
  136.    fi
  137.    dep_tristate '  SCSI generic support' CONFIG_CHR_DEV_SG $CONFIG_SCSI
  138.    comment 'Some SCSI devices (e.g. CD jukebox) support multiple LUNs'
  139.    bool '  Probe all LUNs on each SCSI device' CONFIG_SCSI_MULTI_LUN
  140.    bool '  Verbose SCSI error reporting (kernel size +=12K)' CONFIG_SCSI_CONSTANTS
  141.    bool '  SCSI logging facility' CONFIG_SCSI_LOGGING
  142.    mainmenu_option next_comment
  143.    comment 'SCSI low-level drivers'
  144.    dep_tristate 'Sparc ESP Scsi Driver' CONFIG_SCSI_SUNESP $CONFIG_SCSI
  145.    dep_tristate 'PTI Qlogic,ISP Driver' CONFIG_SCSI_QLOGICPTI $CONFIG_SCSI
  146.    endmenu
  147. fi
  148. endmenu
  149. source drivers/fc4/Config.in
  150. if [ "$CONFIG_NET" = "y" ]; then
  151.    mainmenu_option next_comment
  152.    comment 'Network device support'
  153.    bool 'Network device support' CONFIG_NETDEVICES
  154.    if [ "$CONFIG_NETDEVICES" = "y" ]; then
  155.       tristate '  Dummy net driver support' CONFIG_DUMMY
  156.       tristate '  Bonding driver support' CONFIG_BONDING
  157.       tristate '  Universal TUN/TAP device driver support' CONFIG_TUN
  158.       if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
  159.         if [ "$CONFIG_NETLINK" = "y" ]; then
  160.           tristate '  Ethertap network tap (OBSOLETE)' CONFIG_ETHERTAP
  161.         fi
  162.       fi
  163.       tristate '  PPP (point-to-point) support' CONFIG_PPP
  164.       if [ ! "$CONFIG_PPP" = "n" ]; then
  165.         dep_tristate '  PPP support for async serial ports' CONFIG_PPP_ASYNC $CONFIG_PPP
  166.         dep_tristate '  PPP support for sync tty ports' CONFIG_PPP_SYNC_TTY $CONFIG_PPP
  167.         dep_tristate '  PPP Deflate compression' CONFIG_PPP_DEFLATE $CONFIG_PPP
  168.         dep_tristate '  PPP BSD-Compress compression' CONFIG_PPP_BSDCOMP m
  169.       fi
  170.       tristate '  SLIP (serial line) support' CONFIG_SLIP
  171.       if [ "$CONFIG_SLIP" != "n" ]; then
  172.  bool '    CSLIP compressed headers' CONFIG_SLIP_COMPRESSED
  173.  bool '    Keepalive and linefill' CONFIG_SLIP_SMART
  174.  bool '    Six bit SLIP encapsulation' CONFIG_SLIP_MODE_SLIP6
  175.       fi
  176.       tristate '  Sun LANCE support' CONFIG_SUNLANCE
  177.       tristate '  Sun Happy Meal 10/100baseT support' CONFIG_HAPPYMEAL
  178.       if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
  179.  tristate '  Sun BigMAC 10/100baseT support (EXPERIMENTAL)' CONFIG_SUNBMAC
  180.       fi
  181.       tristate '  Sun QuadEthernet support' CONFIG_SUNQE
  182.       tristate '  MyriCOM Gigabit Ethernet support' CONFIG_MYRI_SBUS
  183.       if [ "$CONFIG_PCI" = "y" ]; then
  184.          tristate '3c590/3c900 series (592/595/597) "Vortex/Boomerang" support' CONFIG_VORTEX
  185.       fi
  186. #      bool '  FDDI driver support' CONFIG_FDDI
  187. #      if [ "$CONFIG_FDDI" = "y" ]; then
  188. #      fi
  189.       if [ "$CONFIG_ATM" = "y" ]; then
  190.  source drivers/atm/Config.in
  191.       fi
  192.    fi
  193.    endmenu
  194. fi
  195. # This one must be before the filesystem configs. -DaveM
  196. mainmenu_option next_comment
  197. comment 'Unix98 PTY support'
  198. bool 'Unix98 PTY support' CONFIG_UNIX98_PTYS
  199. if [ "$CONFIG_UNIX98_PTYS" = "y" ]; then
  200.    int 'Maximum number of Unix98 PTYs in use (0-2048)' CONFIG_UNIX98_PTY_COUNT 256
  201. fi
  202. endmenu
  203. source fs/Config.in
  204. if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
  205.    source net/bluetooth/Config.in
  206. fi
  207. mainmenu_option next_comment
  208. comment 'Watchdog'
  209. tristate 'Software watchdog' CONFIG_SOFT_WATCHDOG
  210. endmenu
  211. mainmenu_option next_comment
  212. comment 'Kernel hacking'
  213. bool 'Magic SysRq key' CONFIG_MAGIC_SYSRQ
  214. endmenu