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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [linux/] [linux-2.4/] [arch/] [parisc/] [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 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
if [ "$CONFIG_SMP" = "y" ]; then
49
   int  'Maximum number of CPUs (2-32)' CONFIG_NR_CPUS 32
50
fi
51
 
52
bool 'Chassis LCD and LED support' CONFIG_CHASSIS_LCD_LED
53
 
54
bool 'Kernel Debugger support' CONFIG_KWDB
55
# define_bool CONFIG_KWDB n
56
 
57
bool 'U2/Uturn I/O MMU' CONFIG_IOMMU_CCIO
58
bool 'VSC/GSC/HSC bus support' CONFIG_GSC
59
dep_bool '  Lasi I/O support' CONFIG_GSC_LASI $CONFIG_GSC
60
dep_bool '  Wax I/O support' CONFIG_GSC_WAX $CONFIG_GSC
61
 
62
dep_bool 'EISA support' CONFIG_EISA $CONFIG_GSC
63
define_bool CONFIG_ISA $CONFIG_EISA
64
bool 'PCI support' CONFIG_PCI
65
 
66
if [ "$CONFIG_PCI" = "y" ]; then
67
   dep_bool '  GSCtoPCI/Dino PCI support' CONFIG_GSC_DINO $CONFIG_GSC
68
   bool '  LBA/Elroy PCI support' CONFIG_PCI_LBA
69
   define_bool CONFIG_IOSAPIC $CONFIG_PCI_LBA
70
   define_bool CONFIG_IOMMU_SBA $CONFIG_PCI_LBA
71
 
72
#   bool '  EPIC PCI support' CONFIG_PCI_EPIC n
73
   bool '  SuperIO support' CONFIG_SUPERIO
74
fi
75
 
76
source drivers/pci/Config.in
77
 
78
endmenu
79
 
80
mainmenu_option next_comment
81
comment 'General setup'
82
 
83
bool 'Support for hot-pluggable devices' CONFIG_HOTPLUG
84
 
85
bool 'Networking support' CONFIG_NET
86
 
87
bool 'System V IPC' CONFIG_SYSVIPC
88
bool 'BSD Process Accounting' CONFIG_BSD_PROCESS_ACCT
89
bool 'Sysctl support' CONFIG_SYSCTL
90
define_bool CONFIG_KCORE_ELF y
91
tristate 'Kernel support for ELF binaries' CONFIG_BINFMT_ELF
92
tristate 'Kernel support for SOM binaries' CONFIG_BINFMT_SOM
93
tristate 'Kernel support for MISC binaries' CONFIG_BINFMT_MISC
94
 
95
# anyone want to get ACPI working on PA/RISC?
96
define_bool CONFIG_PM n
97
 
98
endmenu
99
 
100
source drivers/parport/Config.in
101
 
102
source drivers/block/Config.in
103
 
104
source drivers/md/Config.in
105
 
106
if [ "$CONFIG_NET" = "y" ]; then
107
   source net/Config.in
108
fi
109
 
110
if [ "$CONFIG_SUPERIO" = "y" ]; then
111
    mainmenu_option next_comment
112
    comment 'ATA/IDE/MFM/RLL support'
113
 
114
    tristate 'ATA/IDE/MFM/RLL support' CONFIG_IDE
115
 
116
    if [ "$CONFIG_IDE" != "n" ]; then
117
      source drivers/ide/Config.in
118
    else
119
      define_bool CONFIG_BLK_DEV_HD n
120
    fi
121
    endmenu
122
fi
123
 
124
mainmenu_option next_comment
125
comment 'SCSI support'
126
 
127
tristate 'SCSI support' CONFIG_SCSI
128
 
129
if [ "$CONFIG_SCSI" != "n" ]; then
130
   source drivers/scsi/Config.in
131
fi
132
endmenu
133
 
134
if [ "$CONFIG_NET" = "y" ]; then
135
   mainmenu_option next_comment
136
   comment 'Network device support'
137
 
138
   bool 'Network device support' CONFIG_NETDEVICES
139
 
140
   if [ "$CONFIG_NETDEVICES" = "y" ]; then
141
      source drivers/net/Config.in
142
      if [ "$CONFIG_ATM" = "y" -o "$CONFIG_ATM" = "m" ]; then
143
         source drivers/atm/Config.in
144
      fi
145
   fi
146
   endmenu
147
fi
148
 
149
#
150
# input before char - char/joystick depends on it. As does USB.
151
#
152
source drivers/input/Config.in
153
source drivers/char/Config.in
154
source drivers/hil/Config.in
155
 
156
source drivers/media/Config.in
157
 
158
source fs/Config.in
159
 
160
if [ "$CONFIG_VT" = "y" ]; then
161
   mainmenu_option next_comment
162
   comment 'Console drivers'
163
   source drivers/video/Config.in
164
 
165
   bool 'STI console' CONFIG_STI_CONSOLE
166
   if [ "$CONFIG_GSC_PS2" = "y" ]; then
167
      define_bool CONFIG_DUMMY_CONSOLE y
168
   fi
169
   if [ "$CONFIG_STI_CONSOLE" = "y" ]; then
170
      define_bool CONFIG_DUMMY_CONSOLE y
171
      define_bool CONFIG_FBCON y
172
      define_bool CONFIG_FBCON_FONT y
173
#      define_bool CONFIG_FBCON_FONTWIDTH8_ONLY n
174
      define_bool CONFIG_FONT_8x8 y
175
      define_bool CONFIG_FONT_8x16 y
176
      define_bool CONFIG_FONT_6x11 y
177
      define_bool CONFIG_FONT_SUN12x22 y
178
   fi
179
   endmenu
180
fi
181
 
182
mainmenu_option next_comment
183
comment 'Sound'
184
 
185
tristate 'Sound card support' CONFIG_SOUND
186
if [ "$CONFIG_SOUND" != "n" ]; then
187
   source drivers/sound/Config.in
188
fi
189
endmenu
190
 
191
if [ "$CONFIG_SUPERIO" = "y" ]; then
192
    source drivers/usb/Config.in
193
fi
194
 
195
mainmenu_option next_comment
196
comment 'Kernel hacking'
197
 
198
#bool 'Debug kmalloc/kfree' CONFIG_DEBUG_MALLOC
199
bool 'Magic SysRq key' CONFIG_MAGIC_SYSRQ
200
 
201
int 'Kernel messages buffer length shift (0 = default)' CONFIG_LOG_BUF_SHIFT 0
202
 
203
endmenu
204
 
205
source crypto/Config.in
206
source lib/Config.in

powered by: WebSVN 2.1.0

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