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

📄 config.in

📁 Linux内核源代码 为压缩文件 是<<Linux内核>>一书中的源代码
💻 IN
字号:
## For a description of the syntax of this configuration file,# see the Configure script.#mainmenu_name "Linux Kernel Configuration"define_bool CONFIG_PARISC ydefine_bool CONFIG_UID16 nmainmenu_option next_commentcomment 'Code maturity level options'bool 'Prompt for development and/or incomplete code/drivers' CONFIG_EXPERIMENTALendmenumainmenu_option next_commentcomment 'General options'# bool 'Symmetric multi-processing support' CONFIG_SMPdefine_bool CONFIG_SMP nbool 'Kernel Debugger support' CONFIG_KWDB# define_bool CONFIG_KWDB n# bool 'GSC/Gecko bus support' CONFIG_GSC ydefine_bool CONFIG_GSC ybool 'U2/Uturn I/O MMU' CONFIG_IOMMU_CCIO ybool 'LASI I/O support' CONFIG_GSC_LASI ybool 'PCI bus support' CONFIG_PCI yif [ "$CONFIG_PCI" = "y" ]; then	bool 'GSCtoPCI/DINO PCI support' CONFIG_GSC_DINO y	bool 'LBA/Elroy PCI support' CONFIG_PCI_LBA nfi if [ "$CONFIG_PCI_LBA" = "y" ]; then	define_bool CONFIG_IOSAPIC y	define_bool CONFIG_IOMMU_SBA yfi## if [ "$CONFIG_PCI_EPIC" = "y" ]; then...#endmenumainmenu_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'bool 'Networking support' CONFIG_NETbool 'System V IPC' CONFIG_SYSVIPCbool 'BSD Process Accounting' CONFIG_BSD_PROCESS_ACCTbool 'Sysctl support' CONFIG_SYSCTLtristate 'Kernel support for SOM binaries' CONFIG_BINFMT_SOMtristate 'Kernel support for ELF binaries' CONFIG_BINFMT_ELFtristate 'Kernel support for MISC binaries' CONFIG_BINFMT_MISCif [ "$CONFIG_EXPERIMENTAL" = "y" ]; then  tristate 'Kernel support for JAVA binaries (obsolete)' CONFIG_BINFMT_JAVAfiendmenu##source drivers/parport/Config.inmainmenu_option next_commentcomment 'Parallel port support'tristate 'Parallel port support' CONFIG_PARPORTif [ "$CONFIG_PARPORT" != "n" ]; then   if [ "$CONFIG_PCI" = "y" ]; then     dep_tristate '  PC-style hardware' CONFIG_PARPORT_PC $CONFIG_PARPORT     if [ "$CONFIG_PARPORT_PC" != "n" ]; then        bool '    Use FIFO/DMA if available' CONFIG_PARPORT_PC_FIFO        if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then           bool '    SuperIO chipset support (EXPERIMENTAL)' CONFIG_PARPORT_PC_SUPERIO        fi     fi   fi   if [ "$CONFIG_GSC_LASI" = "y" ]; then      dep_tristate '  LASI/ASP builtin parallel-port' CONFIG_PARPORT_GSC $CONFIG_PARPORT   else      define_tristate CONFIG_PARPORT_GSC n   fi   # If exactly one hardware type is selected then parport will optimise away   # support for loading any others.  Defeat this if the user is keen.   bool '  Support foreign hardware' CONFIG_PARPORT_OTHER   bool '  IEEE 1284 transfer modes' CONFIG_PARPORT_1284fiendmenusource drivers/block/Config.inif [ "$CONFIG_NET" = "y" ]; then  source net/Config.infimainmenu_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  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  mainmenu_option next_comment  comment 'SCSI low-level drivers'  if [ "$CONFIG_GSC_LASI" = "y" ]; then    dep_tristate 'Lasi SCSI support' CONFIG_SCSI_LASI $CONFIG_SCSI    dep_tristate 'Zalon SCSI support' CONFIG_SCSI_ZALON $CONFIG_SCSI  fi  if [ "$CONFIG_PCI" = "y" ]; then    dep_tristate 'SYM53C8XX SCSI support' CONFIG_SCSI_SYM53C8XX $CONFIG_SCSI  fi  if [ "$CONFIG_SCSI_ZALON" != "n" -o "$CONFIG_SCSI_SYM53C8XX" != "n" ]; then    int  '  default tagged command queue depth' CONFIG_SCSI_NCR53C8XX_DEFAULT_TAGS 8    int  '  maximum number of queued commands' CONFIG_SCSI_NCR53C8XX_MAX_TAGS 32    int  '  synchronous transfers frequency in MHz' CONFIG_SCSI_NCR53C8XX_SYNC 20    bool '  enable profiling' CONFIG_SCSI_NCR53C8XX_PROFILE    bool '  use normal IO' CONFIG_SCSI_NCR53C8XX_IOMAPPED  fi  endmenufiendmenuif [ "$CONFIG_NET" = "y" ]; then  mainmenu_option next_comment  comment 'Network device support'  bool 'Network device support' CONFIG_NETDEVICES  if [ "$CONFIG_NETDEVICES" = "y" ]; then    if [ "$CONFIG_GSC_LASI" = "y" ]; then      tristate 'Lasi ethernet' CONFIG_LASI_82596    fi    source drivers/net/Config.in  fi  endmenufisource drivers/char/Config.insource fs/Config.inmainmenu_option next_commentcomment 'Sound Drivers'tristate 'Sound card support' CONFIG_SOUNDif [ "$CONFIG_SOUND" != "n" ]; then   source drivers/sound/Config.infiendmenuif [ "$CONFIG_VT" = "y" ]; then  mainmenu_option next_comment  comment 'Console drivers'  source drivers/video/Config.in#  bool 'IODC console' CONFIG_IODC_CONSOLE  bool 'STI console' CONFIG_STI_CONSOLE  if [ "$CONFIG_IODC_CONSOLE" = "n" ]; then    if [ "$CONFIG_GSC_PS2" = "y" ]; then      define_bool CONFIG_DUMMY_CONSOLE y    fi  fi  if [ "$CONFIG_STI_CONSOLE" = "y" ]; then    define_bool CONFIG_DUMMY_CONSOLE y  fi  endmenufi# endmenumainmenu_option next_commentcomment 'Kernel hacking'#bool 'Debug kmalloc/kfree' CONFIG_DEBUG_MALLOCbool 'Magic SysRq key' CONFIG_MAGIC_SYSRQendmenu

⌨️ 快捷键说明

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