OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [linux/] [linux-2.4/] [arch/] [ppc64/] [config.in] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1275 phoenix
#
2
# For a description of the syntax of this configuration file,
3
# see Documentation/kbuild/config-language.txt.
4
#
5
define_bool CONFIG_UID16 n
6
define_bool CONFIG_RWSEM_GENERIC_SPINLOCK n
7
define_bool CONFIG_RWSEM_XCHGADD_ALGORITHM y
8
define_bool CONFIG_GENERIC_BUST_SPINLOCK n
9
define_bool CONFIG_GENERIC_ISA_DMA y
10
define_bool CONFIG_HAVE_DEC_LOCK y
11
 
12
mainmenu_name "64 bit PowerPC Linux Kernel Configuration"
13
 
14
mainmenu_option next_comment
15
   comment 'Code maturity level options'
16
   bool 'Prompt for development and/or incomplete code/drivers' CONFIG_EXPERIMENTAL
17
endmenu
18
 
19
mainmenu_option next_comment
20
comment 'Platform support'
21
define_bool CONFIG_PPC y
22
define_bool CONFIG_PPC64 y
23
define_bool CONFIG_SERIAL_CONSOLE y
24
 
25
choice 'Machine Type'   \
26
        "pSeries                CONFIG_PPC_PSERIES \
27
         iSeries                CONFIG_PPC_ISERIES" CONFIG_PPC_PSERIES
28
bool 'VMX ( AltiVec ) Support' CONFIG_ALTIVEC
29
bool 'Symmetric multi-processing support' CONFIG_SMP
30
if [ "$CONFIG_SMP" = "y" ]; then
31
  bool '  Distribute interrupts on all CPUs by default' CONFIG_IRQ_ALL_CPUS
32
  int  'Maximum number of CPUs (2-32)' CONFIG_NR_CPUS 32
33
  if [ "$CONFIG_PPC_PSERIES" = "y" ]; then
34
    bool '  Hardware multithreading' CONFIG_HMT
35
  fi
36
fi
37
if [ "$CONFIG_PPC_ISERIES" = "y" ]; then
38
   define_bool CONFIG_MSCHUNKS y
39
else
40
bool 'MsChunks Physical to Absolute address translation support' CONFIG_MSCHUNKS
41
tristate 'Firmware flash interface' CONFIG_RTAS_FLASH
42
tristate 'Scanlog Dump interface' CONFIG_SCANLOG
43
bool 'Support for RTAS (RunTime Abstraction Services) in /proc' CONFIG_PPC_RTAS
44
     if [ "$CONFIG_PPC_RTAS" = "y" ]; then
45
        bool 'RTAS Error Inject' CONFIG_RTAS_ERRINJCT
46
     fi
47
fi
48
 
49
bool 'Shared kernel/user space addressing' CONFIG_SHARED_MEMORY_ADDRESSING
50
 
51
bool 'LPAR Configuration Data' CONFIG_LPARCFG
52
 
53
endmenu
54
 
55
mainmenu_option next_comment
56
comment 'Loadable module support'
57
bool 'Enable loadable module support' CONFIG_MODULES
58
if [ "$CONFIG_MODULES" = "y" ]; then
59
   bool '  Set version information on all module symbols' CONFIG_MODVERSIONS
60
   bool '  Kernel module loader' CONFIG_KMOD
61
fi
62
endmenu
63
 
64
mainmenu_option next_comment
65
comment 'General setup'
66
 
67
define_bool CONFIG_ISA n
68
define_bool CONFIG_SBUS n
69
define_bool CONFIG_MCA n
70
define_bool CONFIG_EISA n
71
define_bool CONFIG_PCI y
72
define_bool CONFIG_PCMCIA n
73
 
74
bool 'Networking support' CONFIG_NET
75
bool 'Sysctl support' CONFIG_SYSCTL
76
bool 'System V IPC' CONFIG_SYSVIPC
77
bool 'BSD Process Accounting' CONFIG_BSD_PROCESS_ACCT
78
 
79
# only elf supported, a.out is not -- Cort
80
if [ "$CONFIG_PROC_FS" = "y" ]; then
81
   define_bool CONFIG_KCORE_ELF y
82
fi
83
 
84
bool 'Kernel support for 64 bit ELF binaries' CONFIG_BINFMT_ELF
85
 
86
tristate 'Kernel support for 32 bit ELF binaries' CONFIG_BINFMT_ELF32
87
 
88
tristate 'Kernel support for MISC binaries' CONFIG_BINFMT_MISC
89
 
90
source drivers/pci/Config.in
91
 
92
bool 'Support for hot-pluggable devices' CONFIG_HOTPLUG
93
 
94
source drivers/parport/Config.in
95
 
96
if [ "$CONFIG_PPC_ISERIES" != "y" ]; then
97
   bool 'Support for VGA Console' CONFIG_VGA_CONSOLE
98
   bool 'Support for frame buffer devices' CONFIG_FB
99
 
100
   bool 'Support for Open Firmware device tree in /proc' CONFIG_PROC_DEVICETREE
101
 
102
   bool 'Default bootloader kernel arguments' CONFIG_CMDLINE_BOOL
103
   if [ "$CONFIG_CMDLINE_BOOL" = "y" ] ; then
104
     string 'Initial kernel command string' CONFIG_CMDLINE "console=ttyS0,9600 console=tty0 root=/dev/sda2"
105
   fi
106
fi
107
 
108
endmenu
109
 
110
source drivers/block/Config.in
111
source drivers/md/Config.in
112
 
113
if [ "$CONFIG_NET" = "y" ]; then
114
   source net/Config.in
115
fi
116
 
117
mainmenu_option next_comment
118
comment 'ATA/IDE/MFM/RLL support'
119
 
120
tristate 'ATA/IDE/MFM/RLL support' CONFIG_IDE
121
 
122
if [ "$CONFIG_IDE" != "n" ]; then
123
  source drivers/ide/Config.in
124
else
125
  define_bool CONFIG_BLK_DEV_HD n
126
fi
127
endmenu
128
 
129
mainmenu_option next_comment
130
comment 'SCSI support'
131
tristate 'SCSI support' CONFIG_SCSI
132
if [ "$CONFIG_SCSI" != "n" ]; then
133
   source drivers/scsi/Config.in
134
fi
135
endmenu
136
 
137
source drivers/ieee1394/Config.in
138
 
139
if [ "$CONFIG_NET" = "y" ]; then
140
   mainmenu_option next_comment
141
   comment 'Network device support'
142
 
143
   bool 'Network device support' CONFIG_NETDEVICES
144
   if [ "$CONFIG_NETDEVICES" = "y" ]; then
145
      source drivers/net/Config.in
146
      if [ "$CONFIG_ATM" = "y" -o "$CONFIG_ATM" = "m" ]; then
147
         source drivers/atm/Config.in
148
      fi
149
   fi
150
   endmenu
151
fi
152
 
153
source net/ax25/Config.in
154
 
155
mainmenu_option next_comment
156
comment 'ISDN subsystem'
157
 
158
tristate 'ISDN support' CONFIG_ISDN
159
if [ "$CONFIG_ISDN" != "n" ]; then
160
   source drivers/isdn/Config.in
161
fi
162
endmenu
163
 
164
mainmenu_option next_comment
165
comment 'Old CD-ROM drivers (not SCSI, not IDE)'
166
 
167
bool 'Support non-SCSI/IDE/ATAPI CDROM drives' CONFIG_CD_NO_IDESCSI
168
if [ "$CONFIG_CD_NO_IDESCSI" != "n" ]; then
169
   source drivers/cdrom/Config.in
170
fi
171
endmenu
172
 
173
if [ "$CONFIG_PPC_ISERIES" != "y" ]; then
174
mainmenu_option next_comment
175
comment 'Console drivers'
176
source drivers/video/Config.in
177
endmenu
178
 
179
source drivers/input/Config.in
180
fi
181
 
182
if [ "$CONFIG_PPC_ISERIES" = "y" ]; then
183
mainmenu_option next_comment
184
comment 'iSeries device drivers'
185
   dep_tristate 'iSeries Virtual Console Support' CONFIG_VIOCONS $CONFIG_PPC_ISERIES
186
   dep_tristate 'iSeries Virtual I/O disk support' CONFIG_VIODASD $CONFIG_PPC_ISERIES
187
   if [ "$CONFIG_VIODASD" = "y" -o "$CONFIG_VIODASD" = "m" ]; then
188
      bool 'iSeries Virtual disk IDE emulation' CONFIG_VIODASD_IDE
189
   fi
190
   dep_tristate 'iSeries Virtual I/O CD support' CONFIG_VIOCD $CONFIG_PPC_ISERIES
191
   if [ "$CONFIG_VIOCD" = "y" -o "$CONFIG_VIOCD" = "m" ]; then
192
      bool 'iSeries Virtual CD Aztech emulation' CONFIG_VIOCD_AZTECH
193
   fi
194
   dep_tristate 'iSeries Virtual Tape Support' CONFIG_VIOTAPE  $CONFIG_PPC_ISERIES
195
   dep_tristate 'iSeries Virtual Ethernet driver support' CONFIG_VETH $CONFIG_PPC_ISERIES
196
endmenu
197
fi
198
 
199
if [ "$CONFIG_VIOCONS" = "n" ]; then
200
   if [ "$CONFIG_VIODASD" = "n" ]; then
201
      if [ "$CONFIG_VIOTAPE" = "n" ]; then
202
         if [ "$CONFIG_VIOCD" = "n" ]; then
203
                    define_bool CONFIG_VIOPATH n
204
                 else
205
                    define_bool CONFIG_VIOPATH y
206
         fi
207
          else
208
             define_bool CONFIG_VIOPATH y
209
      fi
210
   else
211
      define_bool CONFIG_VIOPATH y
212
   fi
213
else
214
   define_bool CONFIG_VIOPATH y
215
fi
216
 
217
if [ "$CONFIG_VIOCD" = "y" ]; then
218
   define_bool CONFIG_CD_NO_IDESCSI y
219
fi
220
 
221
source drivers/char/Config.in
222
source fs/Config.in
223
 
224
if [ "$CONFIG_PPC_ISERIES" != "y" ]; then
225
mainmenu_option next_comment
226
comment 'Sound'
227
tristate 'Sound card support' CONFIG_SOUND
228
if [ "$CONFIG_SOUND" != "n" ]; then
229
   source drivers/sound/dmasound/Config.in
230
   source drivers/sound/Config.in
231
fi
232
 
233
endmenu
234
 
235
source drivers/media/Config.in
236
source drivers/usb/Config.in
237
fi
238
 
239
source lib/Config.in
240
 
241
source crypto/Config.in
242
 
243
mainmenu_option next_comment
244
comment 'Kernel hacking'
245
 
246
bool 'Magic SysRq key' CONFIG_MAGIC_SYSRQ
247
bool 'Include kgdb kernel debugger' CONFIG_KGDB
248
bool 'Include xmon kernel debugger' CONFIG_XMON
249
bool 'Debug memory allocations' CONFIG_DEBUG_SLAB
250
if [ "$CONFIG_XMON" = "y" ]; then
251
  define_bool CONFIG_KALLSYMS n
252
fi
253
bool 'Include PPCDBG realtime debugging' CONFIG_PPCDBG
254
 
255
tristate 'Linux Kernel Crash Dump (LKCD) Support' CONFIG_DUMP
256
if [ "$CONFIG_DUMP" = "y" -o "$CONFIG_DUMP" = "m" ]; then
257
   dep_bool '  LKCD RLE compression' CONFIG_DUMP_COMPRESS_RLE $CONFIG_DUMP
258
   dep_bool '  LKCD GZIP compression' CONFIG_DUMP_COMPRESS_GZIP $CONFIG_DUMP
259
fi
260
 
261
int 'Kernel messages buffer length shift (0 = default)' CONFIG_LOG_BUF_SHIFT 0
262
 
263
endmenu

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.