clean
[linux-2.4.21-pre4.git] / arch / parisc / config.in
1 #
2 # For a description of the syntax of this configuration file,
3 # see the Configure script.
4 #
5
6 mainmenu_name "Linux Kernel Configuration"
7
8 define_bool CONFIG_PARISC y
9 define_bool CONFIG_UID16 n
10 define_bool CONFIG_RWSEM_GENERIC_SPINLOCK y
11 define_bool CONFIG_RWSEM_XCHGADD_ALGORITHM n
12
13 mainmenu_option next_comment
14 comment 'Code maturity level options'
15 bool 'Prompt for development and/or incomplete code/drivers' CONFIG_EXPERIMENTAL
16 endmenu
17
18 mainmenu_option next_comment
19 comment 'Loadable module support'
20 bool 'Enable loadable module support' CONFIG_MODULES
21 if [ "$CONFIG_MODULES" = "y" ] ; then
22   bool 'Set version information on all module symbols' CONFIG_MODVERSIONS
23   bool 'Kernel module loader' CONFIG_KMOD
24 fi
25 endmenu
26
27 mainmenu_option next_comment
28 comment 'Processor type'
29 choice 'Processor family' \
30         "PA7000/PA7100          CONFIG_PA7100 \
31          PA7200                 CONFIG_PA7200 \
32          PA7100LC/PA7300LC      CONFIG_PA7100LC \
33          PA8x00                 CONFIG_PA8X00" PA7000
34
35 if [ "$CONFIG_PA8X00" = "y" ] ; then
36    define_bool CONFIG_PA20 y
37    bool '64-bit kernel' CONFIG_PARISC64
38    dep_bool '32-bit PDC' CONFIG_PDC_NARROW $CONFIG_PARISC64
39 else
40    define_bool CONFIG_PA11 y
41 fi
42 endmenu
43
44 mainmenu_option next_comment
45 comment 'General options'
46
47 bool 'Symmetric multi-processing support' CONFIG_SMP
48 bool 'Chassis LCD and LED support' CONFIG_CHASSIS_LCD_LED
49
50 bool 'Kernel Debugger support' CONFIG_KWDB
51 # define_bool CONFIG_KWDB n
52
53 bool 'U2/Uturn I/O MMU' CONFIG_IOMMU_CCIO
54 bool 'VSC/GSC/HSC bus support' CONFIG_GSC
55 dep_bool '  Lasi I/O support' CONFIG_GSC_LASI $CONFIG_GSC
56 dep_bool '  Wax I/O support' CONFIG_GSC_WAX $CONFIG_GSC
57
58 dep_bool 'EISA support' CONFIG_EISA $CONFIG_GSC
59 define_bool CONFIG_ISA $CONFIG_EISA
60 bool 'PCI support' CONFIG_PCI
61
62 if [ "$CONFIG_PCI" = "y" ]; then
63    dep_bool '  GSCtoPCI/Dino PCI support' CONFIG_GSC_DINO $CONFIG_GSC
64    bool '  LBA/Elroy PCI support' CONFIG_PCI_LBA
65    define_bool CONFIG_IOSAPIC $CONFIG_PCI_LBA
66    define_bool CONFIG_IOMMU_SBA $CONFIG_PCI_LBA
67
68 #   bool '  EPIC PCI support' CONFIG_PCI_EPIC n
69    bool '  SuperIO support' CONFIG_SUPERIO
70 fi 
71
72 source drivers/pci/Config.in
73
74 endmenu
75
76 mainmenu_option next_comment
77 comment 'General setup'
78
79 bool 'Support for hot-pluggable devices' CONFIG_HOTPLUG
80
81 bool 'Networking support' CONFIG_NET
82
83 bool 'System V IPC' CONFIG_SYSVIPC
84 bool 'BSD Process Accounting' CONFIG_BSD_PROCESS_ACCT
85 bool 'Sysctl support' CONFIG_SYSCTL
86 define_bool CONFIG_KCORE_ELF y
87 tristate 'Kernel support for ELF binaries' CONFIG_BINFMT_ELF
88 tristate 'Kernel support for SOM binaries' CONFIG_BINFMT_SOM
89 tristate 'Kernel support for MISC binaries' CONFIG_BINFMT_MISC
90
91 # anyone want to get ACPI working on PA/RISC?
92 define_bool CONFIG_PM n
93
94 endmenu
95
96 source drivers/parport/Config.in
97
98 source drivers/block/Config.in
99
100 source drivers/md/Config.in
101
102 if [ "$CONFIG_NET" = "y" ]; then
103    source net/Config.in
104 fi
105
106 if [ "$CONFIG_SUPERIO" = "y" ]; then
107     mainmenu_option next_comment
108     comment 'ATA/IDE/MFM/RLL support'
109
110     tristate 'ATA/IDE/MFM/RLL support' CONFIG_IDE
111
112     if [ "$CONFIG_IDE" != "n" ]; then
113       source drivers/ide/Config.in
114     else
115       define_bool CONFIG_BLK_DEV_IDE_MODES n
116       define_bool CONFIG_BLK_DEV_HD n
117     fi
118     endmenu
119 fi
120
121 mainmenu_option next_comment
122 comment 'SCSI support'
123
124 tristate 'SCSI support' CONFIG_SCSI
125
126 if [ "$CONFIG_SCSI" != "n" ]; then
127    source drivers/scsi/Config.in
128 fi
129 endmenu
130
131 if [ "$CONFIG_NET" = "y" ]; then
132    mainmenu_option next_comment
133    comment 'Network device support'
134
135    bool 'Network device support' CONFIG_NETDEVICES
136
137    if [ "$CONFIG_NETDEVICES" = "y" ]; then
138       source drivers/net/Config.in
139       if [ "$CONFIG_ATM" = "y" ]; then
140          source drivers/atm/Config.in
141       fi
142    fi
143    endmenu
144 fi
145
146 #
147 # input before char - char/joystick depends on it. As does USB.
148 #
149 source drivers/input/Config.in
150 source drivers/char/Config.in
151 source drivers/hil/Config.in
152
153 source drivers/media/Config.in
154
155 source fs/Config.in
156
157 if [ "$CONFIG_VT" = "y" ]; then
158    mainmenu_option next_comment
159    comment 'Console drivers'
160    source drivers/video/Config.in
161
162    bool 'STI console' CONFIG_STI_CONSOLE
163    if [ "$CONFIG_GSC_PS2" = "y" ]; then
164       define_bool CONFIG_DUMMY_CONSOLE y
165    fi
166    if [ "$CONFIG_STI_CONSOLE" = "y" ]; then
167       define_bool CONFIG_DUMMY_CONSOLE y
168       define_bool CONFIG_FBCON y
169       define_bool CONFIG_FBCON_FONT y
170 #      define_bool CONFIG_FBCON_FONTWIDTH8_ONLY n
171       define_bool CONFIG_FONT_8x8 y
172       define_bool CONFIG_FONT_8x16 y
173       define_bool CONFIG_FONT_6x11 y
174       define_bool CONFIG_FONT_SUN12x22 y
175    fi
176    endmenu
177 fi
178
179 mainmenu_option next_comment
180 comment 'Sound'
181
182 tristate 'Sound card support' CONFIG_SOUND
183 if [ "$CONFIG_SOUND" != "n" ]; then
184    source drivers/sound/Config.in
185 fi
186 endmenu
187
188 if [ "$CONFIG_SUPERIO" = "y" ]; then
189     source drivers/usb/Config.in
190 fi
191
192 mainmenu_option next_comment
193 comment 'Kernel hacking'
194
195 #bool 'Debug kmalloc/kfree' CONFIG_DEBUG_MALLOC
196 bool 'Magic SysRq key' CONFIG_MAGIC_SYSRQ
197 endmenu
198
199 source lib/Config.in