⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 config.in

📁 Linux内核源代码 为压缩文件 是<<Linux内核>>一书中的源代码
💻 IN
字号:
# $Id: config.in,v 1.106 2000/11/17 04:27:52 davem Exp $# For a description of the syntax of this configuration file,# see Documentation/kbuild/config-language.txt.#mainmenu_name "Linux/SPARC Kernel Configuration"define_bool CONFIG_UID16 ydefine_bool CONFIG_HIGHMEM ymainmenu_option next_commentcomment 'Code maturity level options'bool 'Prompt for development and/or incomplete code/drivers' CONFIG_EXPERIMENTALendmenumainmenu_option next_commentcomment 'Loadable module support'bool 'Enable loadable module support' CONFIG_MODULESif [ "$CONFIG_MODULES" = "y" ]; then   bool '  Set version information on all symbols for modules' CONFIG_MODVERSIONS   bool '  Kernel module loader' CONFIG_KMODfiendmenumainmenu_option next_commentcomment 'General setup'define_bool CONFIG_VT ydefine_bool CONFIG_VT_CONSOLE ybool 'Symmetric multi-processing support (does not work on sun4/sun4c)' CONFIG_SMP# Global things across all Sun machines.define_bool CONFIG_ISA ndefine_bool CONFIG_EISA ndefine_bool CONFIG_MCA ndefine_bool CONFIG_PCMCIA ndefine_bool CONFIG_SBUS ydefine_bool CONFIG_SBUSCHAR ydefine_bool CONFIG_BUSMOUSE ydefine_bool CONFIG_SUN_MOUSE ydefine_bool CONFIG_SERIAL ydefine_bool CONFIG_SUN_SERIAL ydefine_bool CONFIG_SERIAL_CONSOLE ydefine_bool CONFIG_SUN_KEYBOARD ydefine_bool CONFIG_SUN_CONSOLE ydefine_bool CONFIG_SUN_AUXIO ydefine_bool CONFIG_SUN_IO ybool 'Support for SUN4 machines (disables SUN4[CDM] support)' CONFIG_SUN4if [ "$CONFIG_SUN4" != "y" ]; then   bool 'Support for PCI and PS/2 keyboard/mouse' CONFIG_PCI   source drivers/pci/Config.inelse   define_bool CONFIG_PCI nfitristate 'Openprom tree appears in /proc/openprom' CONFIG_SUN_OPENPROMFSbool 'Networking support' CONFIG_NETbool 'System V IPC' CONFIG_SYSVIPCbool 'BSD Process Accounting' CONFIG_BSD_PROCESS_ACCTbool 'Sysctl support' CONFIG_SYSCTLif [ "$CONFIG_PROC_FS" = "y" ]; then   define_bool CONFIG_KCORE_ELF yfitristate 'Kernel support for a.out binaries' CONFIG_BINFMT_AOUTtristate 'Kernel support for ELF binaries' CONFIG_BINFMT_ELFtristate 'Kernel support for MISC binaries' CONFIG_BINFMT_MISCbool 'SunOS binary emulation' CONFIG_SUNOS_EMULsource drivers/parport/Config.indep_tristate '  Parallel printer support' CONFIG_PRINTER $CONFIG_PARPORTendmenumainmenu_option next_commentcomment 'Console drivers'bool 'PROM console' CONFIG_PROM_CONSOLEsource drivers/video/Config.inendmenusource drivers/mtd/Config.inif [ "$CONFIG_SUN4" != "y" ]; then   source drivers/sbus/char/Config.in   source drivers/sbus/audio/Config.infimainmenu_option next_commentcomment 'Block devices'bool 'Normal floppy disk support' CONFIG_BLK_DEV_FDtristate 'Loopback device support' CONFIG_BLK_DEV_LOOPdep_tristate 'Network block device support' CONFIG_BLK_DEV_NBD $CONFIG_NET#tristate 'Logical volume manager (LVM) support' CONFIG_BLK_DEV_LVM N#if [ "$CONFIG_BLK_DEV_LVM" != "n" ]; then#   bool '   LVM information in proc filesystem' CONFIG_LVM_PROC_FS Y#fisource drivers/md/Config.intristate 'RAM disk support' CONFIG_BLK_DEV_RAMif [ "$CONFIG_BLK_DEV_RAM" = "y" -o "$CONFIG_BLK_DEV_RAM" = "m" ]; then	int '   Default RAM disk size' CONFIG_BLK_DEV_RAM_SIZE 4096fidep_bool '  Initial RAM disk (initrd) support' CONFIG_BLK_DEV_INITRD $CONFIG_BLK_DEV_RAMendmenuif [ "$CONFIG_NET" = "y" ]; then   source net/Config.infi# Don't frighten a common SBus userif [ "$CONFIG_PCI" = "y" ]; then  mainmenu_option next_comment  comment 'ATA/IDE/MFM/RLL support'  tristate 'ATA/IDE/MFM/RLL support' CONFIG_IDE  if [ "$CONFIG_IDE" != "n" ]; then    source drivers/ide/Config.in  else    define_bool CONFIG_BLK_DEV_IDE_MODES n    define_bool CONFIG_BLK_DEV_HD n  fi  endmenuelse  define_bool CONFIG_IDE n  define_bool CONFIG_BLK_DEV_IDE_MODES n  define_bool CONFIG_BLK_DEV_HD nfimainmenu_option next_commentcomment 'ISDN subsystem'tristate 'ISDN support' CONFIG_ISDNif [ "$CONFIG_ISDN" != "n" ]; then   source drivers/isdn/Config.infiendmenumainmenu_option next_commentcomment 'SCSI support'tristate 'SCSI support' CONFIG_SCSIif [ "$CONFIG_SCSI" != "n" ]; then   comment 'SCSI support type (disk, tape, CDrom)'   dep_tristate '  SCSI disk support' CONFIG_BLK_DEV_SD $CONFIG_SCSI   if [ "$CONFIG_BLK_DEV_SD" != "n" ]; then      int  'Maximum number of SCSI disks that can be loaded as modules' CONFIG_SD_EXTRA_DEVS 40   fi   dep_tristate '  SCSI tape support' CONFIG_CHR_DEV_ST $CONFIG_SCSI   if [ "$CONFIG_BLK_DEV_ST" != "n" ]; then      int  'Maximum number of SCSI tapes that can be loaded as modules' CONFIG_ST_EXTRA_DEVS 2   fi   dep_tristate '  SCSI CDROM support' CONFIG_BLK_DEV_SR $CONFIG_SCSI   if [ "$CONFIG_BLK_DEV_SR" != "n" ]; then      bool '    Enable vendor-specific extensions (for SCSI CDROM)' CONFIG_BLK_DEV_SR_VENDOR      int  'Maximum number of CDROM devices that can be loaded as modules' CONFIG_SR_EXTRA_DEVS 2   fi   dep_tristate '  SCSI generic support' CONFIG_CHR_DEV_SG $CONFIG_SCSI   comment 'Some SCSI devices (e.g. CD jukebox) support multiple LUNs'   bool '  Probe all LUNs on each SCSI device' CONFIG_SCSI_MULTI_LUN   bool '  Verbose SCSI error reporting (kernel size +=12K)' CONFIG_SCSI_CONSTANTS   bool '  SCSI logging facility' CONFIG_SCSI_LOGGING   mainmenu_option next_comment   comment 'SCSI low-level drivers'   tristate 'Sparc ESP Scsi Driver' CONFIG_SCSI_SUNESP $CONFIG_SCSI   tristate 'PTI Qlogic,ISP Driver' CONFIG_SCSI_QLOGICPTI $CONFIG_SCSI   endmenufiendmenusource drivers/fc4/Config.inif [ "$CONFIG_NET" = "y" ]; then   mainmenu_option next_comment   comment 'Network device support'   bool 'Network device support' CONFIG_NETDEVICES   if [ "$CONFIG_NETDEVICES" = "y" ]; then      tristate '  Dummy net driver support' CONFIG_DUMMY      tristate '  Bonding driver support' CONFIG_BONDING      tristate '  Universal TUN/TAP device driver support' CONFIG_TUN      if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then        if [ "$CONFIG_NETLINK" = "y" ]; then          tristate '  Ethertap network tap (OBSOLETE)' CONFIG_ETHERTAP        fi      fi      tristate '  PPP (point-to-point) support' CONFIG_PPP      if [ ! "$CONFIG_PPP" = "n" ]; then        dep_tristate '  PPP support for async serial ports' CONFIG_PPP_ASYNC $CONFIG_PPP        dep_tristate '  PPP support for sync tty ports' CONFIG_PPP_SYNC_TTY $CONFIG_PPP        dep_tristate '  PPP Deflate compression' CONFIG_PPP_DEFLATE $CONFIG_PPP        dep_tristate '  PPP BSD-Compress compression' CONFIG_PPP_BSDCOMP m      fi      tristate '  SLIP (serial line) support' CONFIG_SLIP      if [ "$CONFIG_SLIP" != "n" ]; then	 bool '    CSLIP compressed headers' CONFIG_SLIP_COMPRESSED	 bool '    Keepalive and linefill' CONFIG_SLIP_SMART	 bool '    Six bit SLIP encapsulation' CONFIG_SLIP_MODE_SLIP6      fi      tristate '  Sun LANCE support' CONFIG_SUNLANCE      tristate '  Sun Happy Meal 10/100baseT support' CONFIG_HAPPYMEAL      if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then	 tristate '  Sun BigMAC 10/100baseT support (EXPERIMENTAL)' CONFIG_SUNBMAC      fi      tristate '  Sun QuadEthernet support' CONFIG_SUNQE      tristate '  MyriCOM Gigabit Ethernet support' CONFIG_MYRI_SBUS      if [ "$CONFIG_PCI" = "y" ]; then         tristate '3c590/3c900 series (592/595/597) "Vortex/Boomerang" support' CONFIG_VORTEX      fi#      bool '  FDDI driver support' CONFIG_FDDI#      if [ "$CONFIG_FDDI" = "y" ]; then#      fi      if [ "$CONFIG_ATM" = "y" ]; then	 source drivers/atm/Config.in      fi   fi   endmenufi# This one must be before the filesystem configs. -DaveMmainmenu_option next_commentcomment 'Unix98 PTY support'bool 'Unix98 PTY support' CONFIG_UNIX98_PTYSif [ "$CONFIG_UNIX98_PTYS" = "y" ]; then   int 'Maximum number of Unix98 PTYs in use (0-2048)' CONFIG_UNIX98_PTY_COUNT 256fiendmenusource fs/Config.inmainmenu_option next_commentcomment 'Watchdog'tristate 'Software watchdog' CONFIG_SOFT_WATCHDOGendmenumainmenu_option next_commentcomment 'Kernel hacking'bool 'Magic SysRq key' CONFIG_MAGIC_SYSRQendmenu

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -