Import 2.2.0pre6
[davej-history.git] / arch / i386 / config.in
blob9114c3618383e76844e865779ba4f00cc658ea5e
2 # For a description of the syntax of this configuration file,
3 # see the Configure script.
5 mainmenu_name "Linux Kernel Configuration"
7 mainmenu_option next_comment
8 comment 'Code maturity level options'
9 bool 'Prompt for development and/or incomplete code/drivers' CONFIG_EXPERIMENTAL
10 endmenu
12 mainmenu_option next_comment
13 comment 'Processor type and features'
14 choice 'Processor family' \
15         "386                    CONFIG_M386     \
16          486/Cx486              CONFIG_M486     \
17          586/K5/5x86/6x86       CONFIG_M586     \
18          Pentium/K6/TSC         CONFIG_M586TSC  \
19          PPro/6x86MX            CONFIG_M686" PPro
21 # Define implied options from the CPU selection here
23 if [ "$CONFIG_M386" != "y" ]; then
24   define_bool CONFIG_X86_WP_WORKS_OK y
25   define_bool CONFIG_X86_INVLPG y
26   define_bool CONFIG_X86_BSWAP y
27   define_bool CONFIG_X86_POPAD_OK y
29 if [ "$CONFIG_M686" = "y" -o "$CONFIG_M586TSC" = "y" ]; then
30   define_bool CONFIG_X86_TSC y
32 if [ "$CONFIG_M686" = "y" ]; then
33   define_bool CONFIG_X86_GOOD_APIC y
36 bool 'Math emulation' CONFIG_MATH_EMULATION
37 bool 'MTRR (Memory Type Range Register) support' CONFIG_MTRR
38 bool 'Symmetric multi-processing support' CONFIG_SMP
39 endmenu
41 mainmenu_option next_comment
42 comment 'Loadable module support'
43 bool 'Enable loadable module support' CONFIG_MODULES
44 if [ "$CONFIG_MODULES" = "y" ]; then
45   bool 'Set version information on all symbols for modules' CONFIG_MODVERSIONS
46   bool 'Kernel module loader' CONFIG_KMOD
48 endmenu
50 mainmenu_option next_comment
51 comment 'General setup'
53 bool 'Networking support' CONFIG_NET
54 bool 'PCI support' CONFIG_PCI
55 if [ "$CONFIG_PCI" = "y" ]; then
56   choice 'PCI access mode' \
57         "BIOS           CONFIG_PCI_GOBIOS       \
58          Direct         CONFIG_PCI_GODIRECT     \
59          Any            CONFIG_PCI_GOANY"       Any
60   if [ "$CONFIG_PCI_GOBIOS" = "y" -o "$CONFIG_PCI_GOANY" = "y" ]; then
61     define_bool CONFIG_PCI_BIOS y
62   fi
63   if [ "$CONFIG_PCI_GODIRECT" = "y" -o "$CONFIG_PCI_GOANY" = "y" ]; then
64     define_bool CONFIG_PCI_DIRECT y
65   fi
66   bool '   PCI quirks' CONFIG_PCI_QUIRKS
67   if [ "$CONFIG_PCI_QUIRKS" = "y" -a "$CONFIG_EXPERIMENTAL" = "y" ]; then
68     bool '   PCI bridge optimization (experimental)' CONFIG_PCI_OPTIMIZE
69   fi
70   bool '   Backward-compatible /proc/pci' CONFIG_PCI_OLD_PROC
72 bool 'MCA support' CONFIG_MCA
73 bool 'System V IPC' CONFIG_SYSVIPC
74 bool 'BSD Process Accounting' CONFIG_BSD_PROCESS_ACCT
75 bool 'Sysctl support' CONFIG_SYSCTL
76 tristate 'Kernel support for a.out binaries' CONFIG_BINFMT_AOUT
77 tristate 'Kernel support for ELF binaries' CONFIG_BINFMT_ELF
78 tristate 'Kernel support for MISC binaries' CONFIG_BINFMT_MISC
79 if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
80   tristate 'Kernel support for JAVA binaries (obsolete)' CONFIG_BINFMT_JAVA
83 tristate 'Parallel port support' CONFIG_PARPORT
84 if [ "$CONFIG_PARPORT" != "n" ]; then
85   dep_tristate '   PC-style hardware' CONFIG_PARPORT_PC $CONFIG_PARPORT
86   if [ "$CONFIG_PARPORT_PC" != "n" ]; then
87     bool '   Support foreign hardware' CONFIG_PARPORT_OTHER
88   fi
91 bool 'Advanced Power Management BIOS support' CONFIG_APM
92 if [ "$CONFIG_APM" = "y" ]; then
93   bool '   Ignore USER SUSPEND' CONFIG_APM_IGNORE_USER_SUSPEND
94   bool '   Enable PM at boot time' CONFIG_APM_DO_ENABLE
95   bool '   Make CPU Idle calls when idle' CONFIG_APM_CPU_IDLE
96   bool '   Enable console blanking using APM' CONFIG_APM_DISPLAY_BLANK
97   bool '   Power off on shutdown' CONFIG_APM_POWER_OFF
98   bool '   Ignore multiple suspend' CONFIG_APM_IGNORE_MULTIPLE_SUSPEND
99   bool '   Ignore multiple suspend/resume cycles' CONFIG_APM_IGNORE_SUSPEND_BOUNCE
100   bool '   RTC stores time in GMT' CONFIG_APM_RTC_IS_GMT
101   bool '   Allow interrupts during APM BIOS calls' CONFIG_APM_ALLOW_INTS
104 endmenu
106 source drivers/pnp/Config.in
108 source drivers/block/Config.in
110 if [ "$CONFIG_NET" = "y" ]; then
111   source net/Config.in
114 mainmenu_option next_comment
115 comment 'SCSI support'
117 tristate 'SCSI support' CONFIG_SCSI
119 if [ "$CONFIG_SCSI" != "n" ]; then
120   source drivers/scsi/Config.in
122 endmenu
124 if [ "$CONFIG_NET" = "y" ]; then
125   mainmenu_option next_comment
126   comment 'Network device support'
128   bool 'Network device support' CONFIG_NETDEVICES
129   if [ "$CONFIG_NETDEVICES" = "y" ]; then
130     source drivers/net/Config.in
131   fi
132   endmenu
135 source net/ax25/Config.in
137 source net/irda/Config.in
139 mainmenu_option next_comment
140 comment 'ISDN subsystem'
141 if [ "$CONFIG_NET" != "n" ]; then
142   tristate 'ISDN support' CONFIG_ISDN
143   if [ "$CONFIG_ISDN" != "n" ]; then
144     source drivers/isdn/Config.in
145   fi
147 endmenu
149 mainmenu_option next_comment
150 comment 'CD-ROM drivers (not for SCSI or IDE/ATAPI drives)'
152 bool 'Support non-SCSI/IDE/ATAPI CDROM drives' CONFIG_CD_NO_IDESCSI
153 if [ "$CONFIG_CD_NO_IDESCSI" != "n" ]; then
154   source drivers/cdrom/Config.in
156 endmenu
158 source drivers/char/Config.in
160 source fs/Config.in
162 source fs/nls/Config.in
164 if [ "$CONFIG_VT" = "y" ]; then
165   mainmenu_option next_comment
166   comment 'Console drivers'
167   bool 'VGA text console' CONFIG_VGA_CONSOLE
168   bool 'Video mode selection support' CONFIG_VIDEO_SELECT
169   if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
170     tristate 'MDA text console (dual-headed) (EXPERIMENTAL)' CONFIG_MDA_CONSOLE
171     bool 'Support for frame buffer devices (EXPERIMENTAL)' CONFIG_FB
172   fi
173   source drivers/video/Config.in
174   endmenu
177 mainmenu_option next_comment
178 comment 'Sound'
180 tristate 'Sound card support' CONFIG_SOUND
181 if [ "$CONFIG_SOUND" != "n" ]; then
182   source drivers/sound/Config.in
184 endmenu
186 mainmenu_option next_comment
187 comment 'Kernel hacking'
189 #bool 'Debug kmalloc/kfree' CONFIG_DEBUG_MALLOC
190 bool 'Magic SysRq key' CONFIG_MAGIC_SYSRQ
191 endmenu