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

Subversion Repositories or1k_old

[/] [or1k_old/] [trunk/] [rc203soc/] [sw/] [uClinux/] [arch/] [i386/] [config.in] - Blame information for rev 1782

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1623 jcastillo
#
2
# For a description of the syntax of this configuration file,
3
# see the Configure script.
4
#
5
mainmenu_name "Linux Kernel Configuration"
6
 
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
11
 
12
mainmenu_option next_comment
13
comment 'Loadable module support'
14
bool 'Enable loadable module support' CONFIG_MODULES
15
if [ "$CONFIG_MODULES" = "y" ]; then
16
  bool 'Set version information on all symbols for modules' CONFIG_MODVERSIONS
17
  bool 'Kernel daemon support (e.g. autoload of modules)' CONFIG_KERNELD
18
fi
19
endmenu
20
 
21
mainmenu_option next_comment
22
comment 'General setup'
23
 
24
bool 'Kernel math emulation' CONFIG_MATH_EMULATION
25
choice 'Memory configuration' \
26
        "Standard       CONFIG_MEM_STD  \
27
         Enterprise     CONFIG_MEM_ENT  \
28
         Custom         CONFIG_MEM_SPECIAL" Standard
29
 
30
if [ "$CONFIG_MEM_SPECIAL" = "y" ]; then
31
        int ' Max physical memory in MB (must be a multiple of 4)' CONFIG_MAX_MEMSIZE 1024
32
fi
33
if [ "$CONFIG_MEM_ENT" = "y" ]; then
34
        define_int CONFIG_MAX_MEMSIZE 2048
35
fi
36
if [ "$CONFIG_MEM_STD" = "y" ]; then
37
        define_int CONFIG_MAX_MEMSIZE 1024
38
fi
39
bool 'Networking support' CONFIG_NET
40
bool 'Limit memory to low 16MB' CONFIG_MAX_16M
41
bool 'PCI bios support' CONFIG_PCI
42
if [ "$CONFIG_PCI" = "y" ]; then
43
  if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
44
    bool '   PCI bridge optimization (experimental)' CONFIG_PCI_OPTIMIZE
45
  fi
46
fi
47
bool 'System V IPC' CONFIG_SYSVIPC
48
tristate 'Kernel support for a.out binaries' CONFIG_BINFMT_AOUT
49
tristate 'Kernel support for ELF binaries' CONFIG_BINFMT_ELF
50
if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
51
  tristate 'Kernel support for JAVA binaries' CONFIG_BINFMT_JAVA
52
fi
53
bool 'Compile kernel as ELF - if your GCC is ELF-GCC' CONFIG_KERNEL_ELF
54
 
55
choice 'Processor type' \
56
        "386            CONFIG_M386     \
57
         486            CONFIG_M486     \
58
         Pentium        CONFIG_M586     \
59
         PPro           CONFIG_M686" Pentium
60
 
61
# Conditionally compile MTRR manipulation support
62
if [ "$CONFIG_M686" = "y" -o "$CONFIG_M586" = "y" ]; then
63
  bool 'Handle buggy SMP BIOSes with bad MTRR setup' CONFIG_MTRR
64
fi
65
 
66
bool 'Advanced Power Management BIOS support' CONFIG_APM
67
if [ "$CONFIG_APM" = "y" ]; then
68
  bool '   Ignore USER SUSPEND' CONFIG_APM_IGNORE_USER_SUSPEND
69
  bool '   Enable PM at boot time' CONFIG_APM_DO_ENABLE
70
  bool '   Make CPU Idle calls when idle' CONFIG_APM_CPU_IDLE
71
  bool '   Enable console blanking using APM' CONFIG_APM_DISPLAY_BLANK
72
  bool '   Power off on shutdown' CONFIG_APM_POWER_OFF
73
  bool '   Ignore multiple suspend' CONFIG_APM_IGNORE_MULTIPLE_SUSPEND
74
fi
75
 
76
endmenu
77
 
78
source drivers/block/Config.in
79
 
80
if [ "$CONFIG_NET" = "y" ]; then
81
  source net/Config.in
82
fi
83
 
84
mainmenu_option next_comment
85
comment 'SCSI support'
86
 
87
tristate 'SCSI support' CONFIG_SCSI
88
 
89
if [ "$CONFIG_SCSI" != "n" ]; then
90
  source drivers/scsi/Config.in
91
fi
92
endmenu
93
 
94
if [ "$CONFIG_NET" = "y" ]; then
95
  mainmenu_option next_comment
96
  comment 'Network device support'
97
 
98
  bool 'Network device support' CONFIG_NETDEVICES
99
  if [ "$CONFIG_NETDEVICES" = "y" ]; then
100
    source drivers/net/Config.in
101
  fi
102
  endmenu
103
fi
104
 
105
mainmenu_option next_comment
106
comment 'ISDN subsystem'
107
 
108
tristate 'ISDN support' CONFIG_ISDN
109
if [ "$CONFIG_ISDN" != "n" ]; then
110
  source drivers/isdn/Config.in
111
fi
112
endmenu
113
 
114
mainmenu_option next_comment
115
comment 'CD-ROM drivers (not for SCSI or IDE/ATAPI drives)'
116
 
117
bool 'Support non-SCSI/IDE/ATAPI CDROM drives' CONFIG_CD_NO_IDESCSI
118
if [ "$CONFIG_CD_NO_IDESCSI" != "n" ]; then
119
  source drivers/cdrom/Config.in
120
fi
121
endmenu
122
 
123
source fs/Config.in
124
 
125
source drivers/char/Config.in
126
 
127
mainmenu_option next_comment
128
comment 'Sound'
129
 
130
tristate 'Sound card support' CONFIG_SOUND
131
if [ "$CONFIG_SOUND" != "n" ]; then
132
  source drivers/sound/Config.in
133
fi
134
endmenu
135
 
136
mainmenu_option next_comment
137
comment 'Kernel hacking'
138
 
139
#bool 'Debug kmalloc/kfree' CONFIG_DEBUG_MALLOC
140
bool 'Kernel profiling support' CONFIG_PROFILE
141
if [ "$CONFIG_PROFILE" = "y" ]; then
142
  int ' Profile shift count' CONFIG_PROFILE_SHIFT 2
143
fi
144
endmenu

powered by: WebSVN 2.1.0

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