2 # For a description of the syntax of this configuration file,
3 # see the Configure script.
5 mainmenu_name "Linux/SuperH Kernel Configuration"
7 mainmenu_option next_comment
8 comment 'Code maturity level options'
9 bool 'Prompt for development and/or incomplete code/drivers' CONFIG_EXPERIMENTAL
12 mainmenu_option next_comment
13 comment 'Processor type and features'
14 choice 'Processor type' \
15 "SH7708 CONFIG_CPU_SUBTYPE_SH7708 \
16 SH7709 CONFIG_CPU_SUBTYPE_SH7709 \
17 SH7750 CONFIG_CPU_SUBTYPE_SH7750" SH7708
18 if [ "$CONFIG_CPU_SUBTYPE_SH7708" = "y" ]; then
19 define_bool CONFIG_CPU_SH3 y
20 define_bool CONFIG_CPU_SH4 n
22 if [ "$CONFIG_CPU_SUBTYPE_SH7709" = "y" ]; then
23 define_bool CONFIG_CPU_SH3 y
24 define_bool CONFIG_CPU_SH4 n
26 if [ "$CONFIG_CPU_SUBTYPE_SH7750" = "y" ]; then
27 define_bool CONFIG_CPU_SH3 n
28 define_bool CONFIG_CPU_SH4 y
30 bool 'Little Endian' CONFIG_LITTLE_ENDIAN
31 hex 'Physical memory start address' CONFIG_MEMORY_START 08000000
32 bool 'Use SH CPU internal real time clock' CONFIG_SH_CPU_RTC
35 mainmenu_option next_comment
36 comment 'Loadable module support'
37 bool 'Enable loadable module support' CONFIG_MODULES
38 if [ "$CONFIG_MODULES" = "y" ]; then
39 bool 'Set version information on all symbols for modules' CONFIG_MODVERSIONS
40 bool 'Kernel module loader' CONFIG_KMOD
44 mainmenu_option next_comment
45 comment 'General setup'
46 bool 'Networking support' CONFIG_NET
47 bool 'System V IPC' CONFIG_SYSVIPC
48 bool 'BSD Process Accounting' CONFIG_BSD_PROCESS_ACCT
49 bool 'Sysctl support' CONFIG_SYSCTL
51 if [ "$CONFIG_PROC_FS" = "y" ]; then
52 choice 'Kernel core (/proc/kcore) format' \
53 "ELF CONFIG_KCORE_ELF \
54 A.OUT CONFIG_KCORE_AOUT" ELF
57 tristate 'Kernel support for ELF binaries' CONFIG_BINFMT_ELF
58 tristate 'Kernel support for MISC binaries' CONFIG_BINFMT_MISC
61 mainmenu_option next_comment
62 comment 'Character devices'
63 define_bool CONFIG_SERIAL n
64 define_bool CONFIG_SERIAL_CONSOLE y
65 bool 'SuperH SCI support' CONFIG_SH_SCI_SERIAL
66 bool 'SuperH SCIF support' CONFIG_SH_SCIF_SERIAL
69 mainmenu_option next_comment
70 comment 'Floppy, IDE, and other block devices'
72 tristate 'RAM disk support' CONFIG_BLK_DEV_RAM
73 if [ "$CONFIG_BLK_DEV_RAM" = "y" ]; then
74 bool ' Initial RAM disk (initrd) support' CONFIG_BLK_DEV_INITRD
77 tristate 'Loopback device support' CONFIG_BLK_DEV_LOOP
78 tristate 'Network block device support' CONFIG_BLK_DEV_NBD
81 if [ "$CONFIG_NET" = "y" ]; then
83 mainmenu_option next_comment
84 comment 'Network device drivers'
85 source drivers/net/Config.in
89 mainmenu_option next_comment
90 comment 'Unix 98 PTY support'
91 bool 'Unix98 PTY support' CONFIG_UNIX98_PTYS
92 if [ "$CONFIG_UNIX98_PTYS" = "y" ]; then
93 int 'Maximum number of Unix98 PTYs in use (0-2048)' CONFIG_UNIX98_PTY_COUNT 256
99 mainmenu_option next_comment
102 tristate 'Software watchdog' CONFIG_SOFT_WATCHDOG
105 mainmenu_option next_comment
106 comment 'Kernel hacking'
108 bool 'Magic SysRq key' CONFIG_MAGIC_SYSRQ
109 bool 'GDB Stub kernel debug' CONFIG_DEBUG_KERNEL_WITH_GDB_STUB