Merge with 2.3.99-pre1.
[linux-2.6/linux-mips.git] / arch / sparc / config.in
blobadb0ebe4c6afdc936708d7f4fa8560df81770d5a
1 # $Id: config.in,v 1.88 2000/03/13 03:40:27 davem Exp $
2 # For a description of the syntax of this configuration file,
3 # see the Configure script.
5 mainmenu_name "Linux/SPARC Kernel Configuration"
7 define_bool CONFIG_UID16 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
14 mainmenu_option next_comment
15 comment 'General setup'
17 define_bool CONFIG_VT y
18 define_bool CONFIG_VT_CONSOLE y
20 bool 'Symmetric multi-processing support (does not work on sun4/sun4c)' CONFIG_SMP
22 bool 'Support for SUN4 machines (disables SUN4[CDM] support)' CONFIG_SUN4
23 if [ "$CONFIG_SUN4" != "y" ]; then
24    bool 'Support for PCI and PS/2 keyboard/mouse' CONFIG_PCI
25    source drivers/pci/Config.in
28 mainmenu_option next_comment
29 comment 'Console drivers'
30 bool 'PROM console' CONFIG_PROM_CONSOLE
31 source drivers/video/Config.in
32 endmenu
34 # Global things across all Sun machines.
35 define_bool CONFIG_SBUS y
36 define_bool CONFIG_SBUSCHAR y
37 define_bool CONFIG_BUSMOUSE y
38 define_bool CONFIG_SUN_MOUSE y
39 define_bool CONFIG_SERIAL y
40 define_bool CONFIG_SUN_SERIAL y
41 define_bool CONFIG_SERIAL_CONSOLE y
42 define_bool CONFIG_SUN_KEYBOARD y
43 define_bool CONFIG_SUN_CONSOLE y
44 define_bool CONFIG_SUN_AUXIO y
45 define_bool CONFIG_SUN_IO y
46 if [ "$CONFIG_SUN4" != "y" ]; then
47    source drivers/sbus/char/Config.in
48    source drivers/sbus/audio/Config.in
51 tristate 'Openprom tree appears in /proc/openprom' CONFIG_SUN_OPENPROMFS
52 bool 'Networking support' CONFIG_NET
53 bool 'System V IPC' CONFIG_SYSVIPC
54 bool 'BSD Process Accounting' CONFIG_BSD_PROCESS_ACCT
55 bool 'Sysctl support' CONFIG_SYSCTL
56 if [ "$CONFIG_PROC_FS" = "y" ]; then
57    define_bool CONFIG_KCORE_ELF y
59 tristate 'Kernel support for a.out binaries' CONFIG_BINFMT_AOUT
60 tristate 'Kernel support for ELF binaries' CONFIG_BINFMT_ELF
61 tristate 'Kernel support for MISC binaries' CONFIG_BINFMT_MISC
62 bool 'SunOS binary emulation' CONFIG_SUNOS_EMUL
63 source drivers/parport/Config.in
64 dep_tristate '  Parallel printer support' CONFIG_PRINTER $CONFIG_PARPORT
65 endmenu
67 mainmenu_option next_comment
68 comment 'Loadable module support'
69 bool 'Enable loadable module support' CONFIG_MODULES
70 if [ "$CONFIG_MODULES" = "y" ]; then
71    bool '  Set version information on all symbols for modules' CONFIG_MODVERSIONS
72    bool '  Kernel module loader' CONFIG_KMOD
74 endmenu
76 mainmenu_option next_comment
77 comment 'Floppy and other block devices'
79 bool 'Normal floppy disk support' CONFIG_BLK_DEV_FD
80 bool 'Multiple devices driver support' CONFIG_BLK_DEV_MD
81 if [ "$CONFIG_BLK_DEV_MD" = "y" ]; then
82    tristate '  Linear (append) mode' CONFIG_MD_LINEAR
83    tristate '  RAID-0 (striping) mode' CONFIG_MD_STRIPED
84    tristate '  RAID-1 (mirroring) mode' CONFIG_MD_MIRRORING
85    tristate '  RAID-4/RAID-5 mode' CONFIG_MD_RAID5
88 tristate 'RAM disk support' CONFIG_BLK_DEV_RAM
89 if [ "$CONFIG_BLK_DEV_RAM" = "y" ]; then
90    bool '  Initial RAM disk (initrd) support' CONFIG_BLK_DEV_INITRD
93 tristate 'Loopback device support' CONFIG_BLK_DEV_LOOP
94 tristate 'Network block device support' CONFIG_BLK_DEV_NBD
96 endmenu
98 if [ "$CONFIG_NET" = "y" ]; then
99    source net/Config.in
102 mainmenu_option next_comment
103 comment 'ISDN subsystem'
105 tristate 'ISDN support' CONFIG_ISDN
106 if [ "$CONFIG_ISDN" != "n" ]; then
107    source drivers/isdn/Config.in
109 endmenu
112 define_bool CONFIG_IDE n
113 define_bool CONFIG_BLK_DEV_IDE_MODES n
114 define_bool CONFIG_BLK_DEV_HD n
116 # mainmenu_option next_comment
117 # comment 'ATA/IDE/MFM/RLL support'
119 # tristate 'ATA/IDE/MFM/RLL support' CONFIG_IDE
121 # if [ "$CONFIG_IDE" != "n" ]; then
122 #   source drivers/ide/Config.in
123 # else
124 #   define_bool CONFIG_BLK_DEV_IDE_MODES n
125 #   define_bool CONFIG_BLK_DEV_HD n
126 # fi
127 # endmenu
129 mainmenu_option next_comment
130 comment 'SCSI support'
132 tristate 'SCSI support' CONFIG_SCSI
134 if [ "$CONFIG_SCSI" != "n" ]; then
135    comment 'SCSI support type (disk, tape, CDrom)'
137    dep_tristate '  SCSI disk support' CONFIG_BLK_DEV_SD $CONFIG_SCSI
139    if [ "$CONFIG_BLK_DEV_SD" != "n" ]; then
140       int  'Maximum number of SCSI disks that can be loaded as modules' CONFIG_SD_EXTRA_DEVS 40
141    fi
143    dep_tristate '  SCSI tape support' CONFIG_CHR_DEV_ST $CONFIG_SCSI
145    if [ "$CONFIG_BLK_DEV_ST" != "n" ]; then
146       int  'Maximum number of SCSI tapes that can be loaded as modules' CONFIG_ST_EXTRA_DEVS 2
147    fi
149    dep_tristate '  SCSI CDROM support' CONFIG_BLK_DEV_SR $CONFIG_SCSI
151    if [ "$CONFIG_BLK_DEV_SR" != "n" ]; then
152       bool '    Enable vendor-specific extensions (for SCSI CDROM)' CONFIG_BLK_DEV_SR_VENDOR
153       int  'Maximum number of CDROM devices that can be loaded as modules' CONFIG_SR_EXTRA_DEVS 2
154    fi
156    dep_tristate '  SCSI generic support' CONFIG_CHR_DEV_SG $CONFIG_SCSI
158    comment 'Some SCSI devices (e.g. CD jukebox) support multiple LUNs'
160    bool '  Probe all LUNs on each SCSI device' CONFIG_SCSI_MULTI_LUN
162    bool '  Verbose SCSI error reporting (kernel size +=12K)' CONFIG_SCSI_CONSTANTS
163    bool '  SCSI logging facility' CONFIG_SCSI_LOGGING
165    mainmenu_option next_comment
166    comment 'SCSI low-level drivers'
168    tristate 'Sparc ESP Scsi Driver' CONFIG_SCSI_SUNESP $CONFIG_SCSI
169    tristate 'PTI Qlogic,ISP Driver' CONFIG_SCSI_QLOGICPTI $CONFIG_SCSI
170    endmenu
172 endmenu
174 source drivers/fc4/Config.in
176 if [ "$CONFIG_NET" = "y" ]; then
177    mainmenu_option next_comment
178    comment 'Network device support'
180    bool 'Network device support' CONFIG_NETDEVICES
181    if [ "$CONFIG_NETDEVICES" = "y" ]; then
182       tristate '  Dummy net driver support' CONFIG_DUMMY
183       tristate '  Bonding driver support' CONFIG_BONDING
184       tristate '  PPP (point-to-point) support' CONFIG_PPP
185       if [ ! "$CONFIG_PPP" = "n" ]; then
186         dep_tristate '  PPP support for async serial ports' CONFIG_PPP_ASYNC $CONFIG_PPP
187         dep_tristate '  PPP support for sync tty ports' CONFIG_PPP_SYNC_TTY $CONFIG_PPP
188         dep_tristate '  PPP Deflate compression' CONFIG_PPP_DEFLATE $CONFIG_PPP
189         dep_tristate '  PPP BSD-Compress compression' CONFIG_PPP_BSDCOMP m
190       fi
191       tristate '  SLIP (serial line) support' CONFIG_SLIP
192       if [ "$CONFIG_SLIP" != "n" ]; then
193          bool '    CSLIP compressed headers' CONFIG_SLIP_COMPRESSED
194          bool '    Keepalive and linefill' CONFIG_SLIP_SMART
195          bool '    Six bit SLIP encapsulation' CONFIG_SLIP_MODE_SLIP6
196       fi
197       tristate '  Sun LANCE support' CONFIG_SUNLANCE
198       tristate '  Sun Happy Meal 10/100baseT support' CONFIG_HAPPYMEAL
199       tristate '  Sun BigMAC 10/100baseT support (EXPERIMENTAL)' CONFIG_SUNBMAC
200       tristate '  Sun QuadEthernet support' CONFIG_SUNQE
201       tristate '  MyriCOM Gigabit Ethernet support' CONFIG_MYRI_SBUS
202 #      bool '  FDDI driver support' CONFIG_FDDI
203 #      if [ "$CONFIG_FDDI" = "y" ]; then
204 #      fi
205       if [ "$CONFIG_ATM" = "y" ]; then
206          source drivers/atm/Config.in
207       fi
208    fi
209    endmenu
212 # This one must be before the filesystem configs. -DaveM
213 mainmenu_option next_comment
214 comment 'Unix98 PTY support'
215 bool 'Unix98 PTY support' CONFIG_UNIX98_PTYS
216 if [ "$CONFIG_UNIX98_PTYS" = "y" ]; then
217    int 'Maximum number of Unix98 PTYs in use (0-2048)' CONFIG_UNIX98_PTY_COUNT 256
219 endmenu
221 source fs/Config.in
223 mainmenu_option next_comment
224 comment 'Watchdog'
226 tristate 'Software watchdog' CONFIG_SOFT_WATCHDOG
227 endmenu
229 mainmenu_option next_comment
230 comment 'Kernel hacking'
232 bool 'Magic SysRq key' CONFIG_MAGIC_SYSRQ
233 endmenu