2.2.0-final
[davej-history.git] / arch / i386 / config.in
blob3c42052e4e164dd7e6fe61a86a1f8707e3ba6dba
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 'SGI Visual Workstation support' CONFIG_VISWS
74 if [ "$CONFIG_VISWS" = "y" ]; then
75   define_bool CONFIG_X86_VISWS_APIC y
76   define_bool CONFIG_X86_LOCAL_APIC y
77 else
78   if [ "$CONFIG_SMP" = "y" ]; then
79     define_bool CONFIG_X86_IO_APIC y
80     define_bool CONFIG_X86_LOCAL_APIC y
81   fi
84 bool 'System V IPC' CONFIG_SYSVIPC
85 bool 'BSD Process Accounting' CONFIG_BSD_PROCESS_ACCT
86 bool 'Sysctl support' CONFIG_SYSCTL
87 tristate 'Kernel support for a.out binaries' CONFIG_BINFMT_AOUT
88 tristate 'Kernel support for ELF binaries' CONFIG_BINFMT_ELF
89 tristate 'Kernel support for MISC binaries' CONFIG_BINFMT_MISC
90 if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
91   tristate 'Kernel support for JAVA binaries (obsolete)' CONFIG_BINFMT_JAVA
94 tristate 'Parallel port support' CONFIG_PARPORT
95 if [ "$CONFIG_PARPORT" != "n" ]; then
96   dep_tristate '   PC-style hardware' CONFIG_PARPORT_PC $CONFIG_PARPORT
97   if [ "$CONFIG_PARPORT_PC" != "n" ]; then
98     bool '   Support foreign hardware' CONFIG_PARPORT_OTHER
99   fi
102 bool 'Advanced Power Management BIOS support' CONFIG_APM
103 if [ "$CONFIG_APM" = "y" ]; then
104   bool '   Ignore USER SUSPEND' CONFIG_APM_IGNORE_USER_SUSPEND
105   bool '   Enable PM at boot time' CONFIG_APM_DO_ENABLE
106   bool '   Make CPU Idle calls when idle' CONFIG_APM_CPU_IDLE
107   bool '   Enable console blanking using APM' CONFIG_APM_DISPLAY_BLANK
108   bool '   Power off on shutdown' CONFIG_APM_POWER_OFF
109   bool '   Ignore multiple suspend' CONFIG_APM_IGNORE_MULTIPLE_SUSPEND
110   bool '   Ignore multiple suspend/resume cycles' CONFIG_APM_IGNORE_SUSPEND_BOUNCE
111   bool '   RTC stores time in GMT' CONFIG_APM_RTC_IS_GMT
112   bool '   Allow interrupts during APM BIOS calls' CONFIG_APM_ALLOW_INTS
115 endmenu
117 source drivers/pnp/Config.in
119 source drivers/block/Config.in
121 if [ "$CONFIG_NET" = "y" ]; then
122   source net/Config.in
125 mainmenu_option next_comment
126 comment 'SCSI support'
128 tristate 'SCSI support' CONFIG_SCSI
130 if [ "$CONFIG_SCSI" != "n" ]; then
131   source drivers/scsi/Config.in
133 endmenu
135 if [ "$CONFIG_NET" = "y" ]; then
136   mainmenu_option next_comment
137   comment 'Network device support'
139   bool 'Network device support' CONFIG_NETDEVICES
140   if [ "$CONFIG_NETDEVICES" = "y" ]; then
141     source drivers/net/Config.in
142   fi
143   endmenu
146 source net/ax25/Config.in
148 source net/irda/Config.in
150 mainmenu_option next_comment
151 comment 'ISDN subsystem'
152 if [ "$CONFIG_NET" != "n" ]; then
153   tristate 'ISDN support' CONFIG_ISDN
154   if [ "$CONFIG_ISDN" != "n" ]; then
155     source drivers/isdn/Config.in
156   fi
158 endmenu
160 mainmenu_option next_comment
161 comment 'CD-ROM drivers (not for SCSI or IDE/ATAPI drives)'
163 bool 'Support non-SCSI/IDE/ATAPI CDROM drives' CONFIG_CD_NO_IDESCSI
164 if [ "$CONFIG_CD_NO_IDESCSI" != "n" ]; then
165   source drivers/cdrom/Config.in
167 endmenu
169 source drivers/char/Config.in
171 source fs/Config.in
173 if [ "$CONFIG_VT" = "y" ]; then
174   mainmenu_option next_comment
175   comment 'Console drivers'
176   bool 'VGA text console' CONFIG_VGA_CONSOLE
177   bool 'Video mode selection support' CONFIG_VIDEO_SELECT
178   if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
179     tristate 'MDA text console (dual-headed) (EXPERIMENTAL)' CONFIG_MDA_CONSOLE
180     bool 'Support for frame buffer devices (EXPERIMENTAL)' CONFIG_FB
181   fi
182   source drivers/video/Config.in
183   endmenu
186 mainmenu_option next_comment
187 comment 'Sound'
189 tristate 'Sound card support' CONFIG_SOUND
190 if [ "$CONFIG_SOUND" != "n" ]; then
191   source drivers/sound/Config.in
193 endmenu
195 mainmenu_option next_comment
196 comment 'Kernel hacking'
198 #bool 'Debug kmalloc/kfree' CONFIG_DEBUG_MALLOC
199 bool 'Magic SysRq key' CONFIG_MAGIC_SYSRQ
200 endmenu