Import 2.3.9pre7
[davej-history.git] / arch / ppc / config.in
blob2881decd7ecff450bf2035fbec23a8d5199c28e6
1 # $Id: config.in,v 1.94 1999/06/25 11:00:07 davem Exp $
2 # For a description of the syntax of this configuration file,
3 # see the Configure script.
5 mainmenu_name "Linux/PowerPC Kernel Configuration"
7 mainmenu_option next_comment
8 comment 'Platform support'
9 define_bool CONFIG_PPC y
10 choice 'Processor type' \
11         "6xx/7xx                CONFIG_6xx \
12          630/Power3(64-Bit)     CONFIG_PPC64 \
13          860/821                CONFIG_8xx" 6xx/7xx
15 choice 'Machine Type' \
16         "PowerMac       CONFIG_PMAC \
17          PReP/MTX       CONFIG_PREP \
18          CHRP           CONFIG_CHRP \
19          PowerMac/PReP/CHRP     CONFIG_ALL_PPC \
20          APUS           CONFIG_APUS \
21          MBX            CONFIG_MBX" PowerMac
23 bool 'Symmetric multi-processing support' CONFIG_SMP
24 if [ "$CONFIG_ALL_PPC" != "y" ];then
25   define_bool CONFIG_MACH_SPECIFIC y
28 if [ "$CONFIG_PPC64" != "y" ];then
29   define_bool CONFIG_6xx y
31 endmenu
33 if [ "$CONFIG_MBX" = "y" ];then
34   define_bool CONFIG_SERIAL_CONSOLE y
37 mainmenu_option next_comment
38 comment 'General setup'
40 bool 'Prompt for development and/or incomplete code/drivers' CONFIG_EXPERIMENTAL
41 bool 'Enable loadable module support' CONFIG_MODULES
42 if [ "$CONFIG_MODULES" = "y" ]; then
43   bool 'Set version information on all symbols for modules' CONFIG_MODVERSIONS
44   bool 'Kernel module loader' CONFIG_KMOD
47 if [ "$CONFIG_APUS" = "y" ]; then
48   define_bool CONFIG_PCI n
49 else
50   define_bool CONFIG_PCI y
53 bool 'PCI quirks' CONFIG_PCI_QUIRKS
54 if [ "$CONFIG_PCI_QUIRKS" = "y" ]; then
55   bool '   PCI bridge optimization' CONFIG_PCI_OPTIMIZE
58 bool 'Backward-compatible /proc/pci' CONFIG_PCI_OLD_PROC
59 bool 'Networking support' CONFIG_NET
60 bool 'Sysctl support' CONFIG_SYSCTL
61 bool 'System V IPC' CONFIG_SYSVIPC
62 bool 'BSD Process Accounting' CONFIG_BSD_PROCESS_ACCT
64 # only elf supported, a.out is not -- Cort
65 define_bool CONFIG_BINFMT_ELF y
66 define_bool CONFIG_KERNEL_ELF y
67 tristate 'Kernel support for MISC binaries' CONFIG_BINFMT_MISC
69 tristate 'Parallel port support' CONFIG_PARPORT
70 if [ "$CONFIG_PARPORT" != "n" ]; then
71   dep_tristate '   PC-style hardware' CONFIG_PARPORT_PC $CONFIG_PARPORT
72   if [ "$CONFIG_PARPORT_PC" != "n" ]; then
73     bool '   Support foreign hardware' CONFIG_PARPORT_OTHER
74   fi
77 bool 'Support for VGA Console' CONFIG_VGA_CONSOLE
78 bool 'Support for frame buffer devices' CONFIG_FB
79 if [ "$CONFIG_FB" = "y" ]; then
80   bool 'Backward compatibility mode for Xpmac' CONFIG_FB_COMPAT_XPMAC
83 bool 'Power management support for PowerBook 3400/2400' CONFIG_PMAC_PBOOK
84 bool 'Support for PowerMac keyboard' CONFIG_MAC_KEYBOARD
85 bool 'Support for PowerMac floppy' CONFIG_MAC_FLOPPY
86 bool 'Support for PowerMac serial ports' CONFIG_MAC_SERIAL
87 if [ "$CONFIG_MAC_SERIAL" = "y" ]; then
88    bool '   Support for console on serial port' CONFIG_SERIAL_CONSOLE
90 bool 'Support for PowerMac ADB mouse' CONFIG_ADBMOUSE
91 bool 'Support for Open Firmware device tree in /proc' CONFIG_PROC_DEVICETREE
92 bool 'Support for TotalImpact TotalMP' CONFIG_TOTALMP
93 bool 'Support for early boot text console (BootX only)' CONFIG_BOOTX_TEXT
94 bool 'Support for Motorola Hot Swap' CONFIG_MOTOROLA_HOTSWAP
95 if [ "$CONFIG_PREP" = "y" -o "$CONFIG_ALL_PPC" = "y" ]; then
96   bool 'PReP bootloader kernel arguments' CONFIG_CMDLINE_BOOL y
97   if [ "$CONFIG_CMDLINE_BOOL" = "y" ] ; then
98     string 'Initial kernel command string' CONFIG_CMDLINE console=ttyS0,9600 console=tty0 root=/dev/sda2
99   fi
102 if [ "$CONFIG_APUS" = "y" ]; then
103   define_bool CONFIG_FB_CONSOLE y
104   define_bool CONFIG_AMIGA y
105   define_bool CONFIG_ZORRO y
106   define_bool CONFIG_AMIGAMOUSE y
107   define_bool CONFIG_ABSTRACT_CONSOLE y
108   define_bool CONFIG_FB y
109   tristate 'Amiga builtin serial support' CONFIG_AMIGA_BUILTIN_SERIAL
110   tristate 'Parallel printer support' CONFIG_M68K_PRINTER
111   tristate 'GVP IO-Extender support' CONFIG_GVPIOEXT
112   dep_tristate 'GVP IO-Extender parallel printer support' CONFIG_GVPIOEXT_LP $CONFIG_GVPIOEXT
113   dep_tristate 'GVP IO-Extender PLIP support' CONFIG_GVPIOEXT_PLIP $CONFIG_GVPIOEXT
114   tristate 'Multiface Card III serial support' CONFIG_MULTIFACE_III_TTY
115   if [ "$CONFIG_AMIGA_BUILTIN_SERIAL" = "y" -o "$CONFIG_GVPIOEXT" = "y" -o \
116        "$CONFIG_MULTIFACE_III_TTY" = "y" ]; then
117     bool 'Support for serial port console' CONFIG_SERIAL_CONSOLE
118   fi
119   bool 'Use power LED as a heartbeat' CONFIG_HEARTBEAT
120   bool '/proc/hardware support' CONFIG_PROC_HARDWARE
123 endmenu
125 source drivers/pnp/Config.in
126 source drivers/block/Config.in
127 #source drivers.new/Config.in
129 if [ "$CONFIG_NET" = "y" ]; then
130   source net/Config.in
133 mainmenu_option next_comment
134 comment 'SCSI support'
135 tristate 'SCSI support' CONFIG_SCSI
136 if [ "$CONFIG_SCSI" != "n" ]; then
137   source drivers/scsi/Config.in
139 endmenu
141 if [ "$CONFIG_NET" = "y" ]; then
142   mainmenu_option next_comment
143   comment 'Network device support'
145   bool 'Network device support' CONFIG_NETDEVICES
146   if [ "$CONFIG_NETDEVICES" = "y" ]; then
147     source drivers/net/Config.in
148   fi
149   endmenu
152 source net/ax25/Config.in
154 mainmenu_option next_comment
155 comment 'ISDN subsystem'
157 tristate 'ISDN support' CONFIG_ISDN
158 if [ "$CONFIG_ISDN" != "n" ]; then
159   source drivers/isdn/Config.in
161 endmenu
163 mainmenu_option next_comment
164 comment 'Old CD-ROM drivers (not SCSI, not IDE)'
166 bool 'Support non-SCSI/IDE/ATAPI CDROM drives' CONFIG_CD_NO_IDESCSI
167 if [ "$CONFIG_CD_NO_IDESCSI" != "n" ]; then
168   source drivers/cdrom/Config.in
170 endmenu
172 mainmenu_option next_comment
173 comment 'Console drivers'
174 source drivers/video/Config.in
175 endmenu
177 source drivers/char/Config.in
178 source fs/Config.in
180 mainmenu_option next_comment
181 comment 'Sound'
182 tristate 'Sound card support' CONFIG_SOUND
183 if [ "$CONFIG_SOUND" != "n" ]; then
184   dep_tristate 'Amiga or PowerMac DMA sound support' CONFIG_DMASOUND $CONFIG_SOUND
185   source drivers/sound/Config.in
188 endmenu
190 mainmenu_option next_comment
191 comment 'Kernel hacking'
193 bool 'Magic SysRq key' CONFIG_MAGIC_SYSRQ
194 bool 'Include kgdb kernel debugger' CONFIG_KGDB
195 bool 'Include xmon kernel debugger' CONFIG_XMON
196 endmenu