diff options
Diffstat (limited to 'drivers/char/Config.in')
-rw-r--r-- | drivers/char/Config.in | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/drivers/char/Config.in b/drivers/char/Config.in index 9b13a4d2d..8af5a5e44 100644 --- a/drivers/char/Config.in +++ b/drivers/char/Config.in @@ -6,16 +6,18 @@ comment 'Character devices' bool 'Virtual terminal' CONFIG_VT if [ "$CONFIG_VT" = "y" ]; then - bool 'Console on virtual terminal' CONFIG_VT_CONSOLE + bool 'Support for console on virtual terminal' CONFIG_VT_CONSOLE fi tristate 'Standard/generic (dumb) serial support' CONFIG_SERIAL +if [ "$CONFIG_SERIAL" = "y" ]; then + bool ' Support for console on serial port' CONFIG_SERIAL_CONSOLE +fi bool 'Extended dumb serial driver options' CONFIG_SERIAL_EXTENDED if [ "$CONFIG_SERIAL_EXTENDED" = "y" ]; then bool ' Support more than 4 serial ports' CONFIG_SERIAL_MANY_PORTS bool ' Support for sharing serial interrupts' CONFIG_SERIAL_SHARE_IRQ bool ' Support special multiport boards' CONFIG_SERIAL_MULTIPORT bool ' Support the Bell Technologies HUB6 card' CONFIG_HUB6 - bool ' Console on serial port' CONFIG_SERIAL_CONSOLE fi bool 'Non-standard serial port support' CONFIG_SERIAL_NONSTANDARD if [ "$CONFIG_SERIAL_NONSTANDARD" = "y" ]; then @@ -31,6 +33,10 @@ if [ "$CONFIG_SERIAL_NONSTANDARD" = "y" ]; then tristate ' Stallion EC8/64, ONboard, Brumby support' CONFIG_ISTALLION fi tristate 'SDL RISCom/8 card support' CONFIG_RISCOM8 + tristate 'Specialix IO8+ card support' CONFIG_SPECIALIX + if [ "$CONFIG_SPECIALIX" = "y" -o "$CONFIG_SPECIALIX" = "m" ]; then + bool 'Specialix DTR/RTS pin is RTS' CONFIG_SPECIALIX_RTSCTS + fi tristate 'Hayes ESP serial port support' CONFIG_ESPSERIAL if [ "$CONFIG_ESPSERIAL" = "y" -o "$CONFIG_ESPSERIAL" = "m" ]; then int ' DMA channel' CONFIG_ESPSERIAL_DMA_CHANNEL 1 @@ -60,7 +66,11 @@ if [ "$CONFIG_MOUSE" = "y" ]; then tristate 'PC110 digitizer pad support' CONFIG_PC110_PAD fi -if [ "$CONFIG_MODULES" = "y" ]; then +# IRIX compat stuff for X on the Indy relies on CONFIG_UMISC +if [ "$CONFIG_SGI" = "y" ]; then + define_bool CONFIG_UMISC y + bool 'Support for SGI graphic devices' CONFIG_SGI_GRAPHICS +elif [ "$CONFIG_MODULES" = "y" ]; then bool 'Support for user misc device modules' CONFIG_UMISC fi |