blob: 2f05afc6d0fa968f43d7981fbe226a0114a4b8d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#
# Character device configuration
#
mainmenu_option next_comment
comment 'SGI devices'
bool 'SGI Zilog85C30 serial support' CONFIG_SGI_SERIAL
if [ "$CONFIG_SGI_SERIAL" != "n" ]; then
define_bool CONFIG_SERIAL y
fi
bool 'SGI DS1286 RTC support' CONFIG_SGI_DS1286
if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
tristate 'SGI Newport Graphics support' CONFIG_SGI_NEWPORT_GFX
tristate 'SGI Newport Console support' CONFIG_SGI_NEWPORT_CONSOLE
if [ "$CONFIG_SGI_NEWPORT_CONSOLE" = "m" ]; then
define_bool CONFIG_DUMMY_CONSOLE y
fi
fi
endmenu
|