OpenCores
URL https://opencores.org/ocsvn/or1k_old/or1k_old/trunk

Subversion Repositories or1k_old

[/] [or1k_old/] [trunk/] [rc203soc/] [sw/] [uClinux/] [arch/] [m68k/] [config.in] - Diff between revs 1765 and 1782

Only display areas with differences | Details | Blame | View Log

Rev 1765 Rev 1782
#
#
# For a description of the syntax of this configuration file,
# For a description of the syntax of this configuration file,
# see the Configure script.
# see the Configure script.
#
#
mainmenu_name "Linux/68k Kernel Configuration"
mainmenu_name "Linux/68k Kernel Configuration"
mainmenu_option next_comment
mainmenu_option next_comment
comment 'Loadable module support'
comment 'Loadable module support'
bool 'Enable loadable module support' CONFIG_MODULES
bool 'Enable loadable module support' CONFIG_MODULES
if [ "$CONFIG_MODULES" = "y" ]; then
if [ "$CONFIG_MODULES" = "y" ]; then
  bool 'Set version information on all symbols for modules' CONFIG_MODVERSIONS
  bool 'Set version information on all symbols for modules' CONFIG_MODVERSIONS
  bool 'Kernel daemon support (e.g. autoload of modules)' CONFIG_KERNELD
  bool 'Kernel daemon support (e.g. autoload of modules)' CONFIG_KERNELD
fi
fi
endmenu
endmenu
mainmenu_option next_comment
mainmenu_option next_comment
comment 'General setup'
comment 'General setup'
bool 'Amiga support' CONFIG_AMIGA
bool 'Amiga support' CONFIG_AMIGA
bool 'Atari support' CONFIG_ATARI
bool 'Atari support' CONFIG_ATARI
bool 'Macintosh support' CONFIG_MAC
bool 'Macintosh support' CONFIG_MAC
bool '68040 floating point software package' CONFIG_FPSP_040
bool '68040 floating point software package' CONFIG_FPSP_040
bool '68060 integer/floating point software package' CONFIG_IFPSP_060
bool '68060 integer/floating point software package' CONFIG_IFPSP_060
bool 'Networking support' CONFIG_NET
bool 'Networking support' CONFIG_NET
bool 'System V IPC' CONFIG_SYSVIPC
bool 'System V IPC' CONFIG_SYSVIPC
tristate 'Kernel support for a.out binaries' CONFIG_BINFMT_AOUT
tristate 'Kernel support for a.out binaries' CONFIG_BINFMT_AOUT
tristate 'Kernel support for ELF binaries' CONFIG_BINFMT_ELF
tristate 'Kernel support for ELF binaries' CONFIG_BINFMT_ELF
if [ "$CONFIG_BINFMT_ELF" = "y" ]; then
if [ "$CONFIG_BINFMT_ELF" = "y" ]; then
  bool 'Compile kernel as ELF - if your GCC is ELF-GCC' CONFIG_KERNEL_ELF
  bool 'Compile kernel as ELF - if your GCC is ELF-GCC' CONFIG_KERNEL_ELF
fi
fi
if [ "$CONFIG_AMIGA" = "y" ]; then
if [ "$CONFIG_AMIGA" = "y" ]; then
  bool 'Amiga AutoConfig Identification' CONFIG_ZORRO
  bool 'Amiga AutoConfig Identification' CONFIG_ZORRO
fi
fi
endmenu
endmenu
#
#
# Block device driver configuration
# Block device driver configuration
#
#
mainmenu_option next_comment
mainmenu_option next_comment
comment 'Floppy, IDE, and other block devices'
comment 'Floppy, IDE, and other block devices'
tristate 'Normal floppy disk support' CONFIG_BLK_DEV_FD
tristate 'Normal floppy disk support' CONFIG_BLK_DEV_FD
bool 'IDE harddisk support' CONFIG_BLK_DEV_IDE
bool 'IDE harddisk support' CONFIG_BLK_DEV_IDE
if [ "$CONFIG_AMIGA" = "y" ]; then
if [ "$CONFIG_AMIGA" = "y" ]; then
bool 'Amiga Cybervision support' CONFIG_FB_CYBER
bool 'Amiga Cybervision support' CONFIG_FB_CYBER
bool 'Amiga Zorro II ramdisk support' CONFIG_AMIGA_Z2RAM
bool 'Amiga Zorro II ramdisk support' CONFIG_AMIGA_Z2RAM
fi
fi
if [ "$CONFIG_ATARI" = "y" ]; then
if [ "$CONFIG_ATARI" = "y" ]; then
bool 'Atari ACSI support' CONFIG_ATARI_ACSI
bool 'Atari ACSI support' CONFIG_ATARI_ACSI
fi
fi
tristate 'RAM disk support' CONFIG_BLK_DEV_RAM
tristate 'RAM disk support' CONFIG_BLK_DEV_RAM
if [ "$CONFIG_BLK_DEV_RAM" = "y" ]; then
if [ "$CONFIG_BLK_DEV_RAM" = "y" ]; then
  bool '   Initial RAM disk (initrd) support' CONFIG_BLK_DEV_INITRD
  bool '   Initial RAM disk (initrd) support' CONFIG_BLK_DEV_INITRD
fi
fi
tristate 'Loopback device support' CONFIG_BLK_DEV_LOOP
tristate 'Loopback device support' CONFIG_BLK_DEV_LOOP
endmenu
endmenu
if [ "$CONFIG_NET" = "y" ]; then
if [ "$CONFIG_NET" = "y" ]; then
  source net/Config.in
  source net/Config.in
fi
fi
mainmenu_option next_comment
mainmenu_option next_comment
comment 'SCSI support'
comment 'SCSI support'
tristate 'SCSI support' CONFIG_SCSI
tristate 'SCSI support' CONFIG_SCSI
if [ "$CONFIG_SCSI" != "n" ]; then
if [ "$CONFIG_SCSI" != "n" ]; then
comment 'SCSI support type (disk, tape, CDrom)'
comment 'SCSI support type (disk, tape, CDrom)'
dep_tristate 'SCSI disk support' CONFIG_BLK_DEV_SD $CONFIG_SCSI
dep_tristate 'SCSI disk support' CONFIG_BLK_DEV_SD $CONFIG_SCSI
dep_tristate 'SCSI tape support' CONFIG_CHR_DEV_ST $CONFIG_SCSI
dep_tristate 'SCSI tape support' CONFIG_CHR_DEV_ST $CONFIG_SCSI
dep_tristate 'SCSI CDROM support' CONFIG_BLK_DEV_SR $CONFIG_SCSI
dep_tristate 'SCSI CDROM support' CONFIG_BLK_DEV_SR $CONFIG_SCSI
dep_tristate 'SCSI generic support' CONFIG_CHR_DEV_SG $CONFIG_SCSI
dep_tristate 'SCSI generic support' CONFIG_CHR_DEV_SG $CONFIG_SCSI
comment 'Some SCSI devices (e.g. CD jukebox) support multiple LUNs'
comment 'Some SCSI devices (e.g. CD jukebox) support multiple LUNs'
bool 'Probe all LUNs on each SCSI device' CONFIG_SCSI_MULTI_LUN
bool 'Probe all LUNs on each SCSI device' CONFIG_SCSI_MULTI_LUN
bool 'Verbose SCSI error reporting (kernel size +=12K)' CONFIG_SCSI_CONSTANTS
bool 'Verbose SCSI error reporting (kernel size +=12K)' CONFIG_SCSI_CONSTANTS
mainmenu_option next_comment
mainmenu_option next_comment
comment 'SCSI low-level drivers'
comment 'SCSI low-level drivers'
if [ "$CONFIG_AMIGA" = "y" ]; then
if [ "$CONFIG_AMIGA" = "y" ]; then
bool 'A3000 WD33C93A support' CONFIG_A3000_SCSI
bool 'A3000 WD33C93A support' CONFIG_A3000_SCSI
bool 'A2091 WD33C93A support' CONFIG_A2091_SCSI
bool 'A2091 WD33C93A support' CONFIG_A2091_SCSI
bool 'GVP Series II WD33C93A support' CONFIG_GVP11_SCSI
bool 'GVP Series II WD33C93A support' CONFIG_GVP11_SCSI
fi
fi
if [ "$CONFIG_ATARI" = "y" ]; then
if [ "$CONFIG_ATARI" = "y" ]; then
dep_tristate 'Atari native SCSI support' CONFIG_ATARI_SCSI $CONFIG_SCSI
dep_tristate 'Atari native SCSI support' CONFIG_ATARI_SCSI $CONFIG_SCSI
fi
fi
#dep_tristate 'SCSI debugging host adapter' CONFIG_SCSI_DEBUG $CONFIG_SCSI
#dep_tristate 'SCSI debugging host adapter' CONFIG_SCSI_DEBUG $CONFIG_SCSI
endmenu
endmenu
fi
fi
endmenu
endmenu
if [ "$CONFIG_NET" = "y" ]; then
if [ "$CONFIG_NET" = "y" ]; then
mainmenu_option next_comment
mainmenu_option next_comment
comment 'Network device support'
comment 'Network device support'
bool 'Network device support' CONFIG_NETDEVICES
bool 'Network device support' CONFIG_NETDEVICES
if [ "$CONFIG_NETDEVICES" = "y" ]; then
if [ "$CONFIG_NETDEVICES" = "y" ]; then
#
#
# Network device configuration
# Network device configuration
#
#
tristate 'Dummy net driver support' CONFIG_DUMMY
tristate 'Dummy net driver support' CONFIG_DUMMY
tristate 'SLIP (serial line) support' CONFIG_SLIP
tristate 'SLIP (serial line) support' CONFIG_SLIP
if [ "$CONFIG_SLIP" != "n" ]; then
if [ "$CONFIG_SLIP" != "n" ]; then
  bool ' CSLIP compressed headers' CONFIG_SLIP_COMPRESSED
  bool ' CSLIP compressed headers' CONFIG_SLIP_COMPRESSED
fi
fi
tristate 'PPP (point-to-point) support' CONFIG_PPP
tristate 'PPP (point-to-point) support' CONFIG_PPP
if [ ! "$CONFIG_PPP" = "n" ]; then
if [ ! "$CONFIG_PPP" = "n" ]; then
  comment 'CCP compressors for PPP are only built as modules.'
  comment 'CCP compressors for PPP are only built as modules.'
fi
fi
tristate 'EQL (serial line load balancing) support' CONFIG_EQUALIZER
tristate 'EQL (serial line load balancing) support' CONFIG_EQUALIZER
if [ "$CONFIG_AMIGA" = "y" ]; then
if [ "$CONFIG_AMIGA" = "y" ]; then
  tristate 'Ariadne support' CONFIG_ARIADNE
  tristate 'Ariadne support' CONFIG_ARIADNE
  tristate 'A2065 support' CONFIG_A2065
  tristate 'A2065 support' CONFIG_A2065
  tristate 'Hydra support' CONFIG_HYDRA
  tristate 'Hydra support' CONFIG_HYDRA
fi
fi
if [ "$CONFIG_ATARI" = "y" ]; then
if [ "$CONFIG_ATARI" = "y" ]; then
  bool 'Atari Lance support' CONFIG_ATARILANCE
  bool 'Atari Lance support' CONFIG_ATARILANCE
fi
fi
fi
fi
endmenu
endmenu
fi
fi
source fs/Config.in
source fs/Config.in
mainmenu_option next_comment
mainmenu_option next_comment
comment 'Character devices'
comment 'Character devices'
bool 'Parallel printer support' CONFIG_PRINTER
bool 'Parallel printer support' CONFIG_PRINTER
if [ "$CONFIG_AMIGA" = "y" ]; then
if [ "$CONFIG_AMIGA" = "y" ]; then
  tristate 'Amiga mouse support' CONFIG_AMIGAMOUSE
  tristate 'Amiga mouse support' CONFIG_AMIGAMOUSE
fi
fi
if [ "$CONFIG_ATARI" = "y" ]; then
if [ "$CONFIG_ATARI" = "y" ]; then
  tristate 'Atari mouse support' CONFIG_ATARIMOUSE
  tristate 'Atari mouse support' CONFIG_ATARIMOUSE
fi
fi
if [ "$CONFIG_ATARI" = y ]; then
if [ "$CONFIG_ATARI" = y ]; then
  tristate 'Atari MFP serial support' CONFIG_ATARI_MFPSER
  tristate 'Atari MFP serial support' CONFIG_ATARI_MFPSER
  tristate 'Atari SCC serial support' CONFIG_ATARI_SCC
  tristate 'Atari SCC serial support' CONFIG_ATARI_SCC
  tristate 'Atari MIDI serial support' CONFIG_ATARI_MIDI
  tristate 'Atari MIDI serial support' CONFIG_ATARI_MIDI
fi
fi
if [ "$CONFIG_AMIGA" = y ]; then
if [ "$CONFIG_AMIGA" = y ]; then
  tristate 'Amiga builtin serial support' CONFIG_AMIGA_BUILTIN_SERIAL
  tristate 'Amiga builtin serial support' CONFIG_AMIGA_BUILTIN_SERIAL
  bool 'GVP IO-Extender support' CONFIG_GVPIOEXT
  bool 'GVP IO-Extender support' CONFIG_GVPIOEXT
  tristate 'Multiface Card III serial support' CONFIG_MULTIFACE_III_TTY
  tristate 'Multiface Card III serial support' CONFIG_MULTIFACE_III_TTY
fi
fi
bool 'Support for user serial device modules' CONFIG_USERIAL
bool 'Support for user serial device modules' CONFIG_USERIAL
bool 'Watchdog Timer Support'   CONFIG_WATCHDOG
bool 'Watchdog Timer Support'   CONFIG_WATCHDOG
if [ "$CONFIG_WATCHDOG" != "n" ]; then
if [ "$CONFIG_WATCHDOG" != "n" ]; then
  bool '   Disable watchdog shutdown on close' CONFIG_WATCHDOG_NOWAYOUT
  bool '   Disable watchdog shutdown on close' CONFIG_WATCHDOG_NOWAYOUT
  bool '   Software Watchdog' CONFIG_SOFT_WATCHDOG
  bool '   Software Watchdog' CONFIG_SOFT_WATCHDOG
fi
fi
bool 'Support for user misc device modules' CONFIG_UMISC
bool 'Support for user misc device modules' CONFIG_UMISC
endmenu
endmenu
mainmenu_option next_comment
mainmenu_option next_comment
comment 'Sound support'
comment 'Sound support'
bool 'Sound support' CONFIG_SOUND y
bool 'Sound support' CONFIG_SOUND y
if [ "$CONFIG_SOUND" != "n" ]; then
if [ "$CONFIG_SOUND" != "n" ]; then
  bool 'Amiga or Atari DMA sound support' CONFIG_DMASOUND y
  bool 'Amiga or Atari DMA sound support' CONFIG_DMASOUND y
fi
fi
endmenu
endmenu
mainmenu_option next_comment
mainmenu_option next_comment
comment 'Kernel hacking'
comment 'Kernel hacking'
#bool 'Debug kmalloc/kfree' CONFIG_DEBUG_MALLOC
#bool 'Debug kmalloc/kfree' CONFIG_DEBUG_MALLOC
bool 'Kernel profiling support' CONFIG_PROFILE
bool 'Kernel profiling support' CONFIG_PROFILE
if [ "$CONFIG_PROFILE" = "y" ]; then
if [ "$CONFIG_PROFILE" = "y" ]; then
  int ' Profile shift count' CONFIG_PROFILE_SHIFT 2
  int ' Profile shift count' CONFIG_PROFILE_SHIFT 2
fi
fi
endmenu
endmenu
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.