1 |
199 |
simons |
#
|
2 |
|
|
# Character device configuration
|
3 |
|
|
#
|
4 |
|
|
mainmenu_option next_comment
|
5 |
|
|
comment 'Character devices'
|
6 |
|
|
|
7 |
|
|
tristate 'Standard/generic serial support' CONFIG_SERIAL
|
8 |
|
|
if [ "$CONFIG_SERIAL" != "n" ]; then
|
9 |
|
|
if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
|
10 |
|
|
bool ' PCI serial support' CONFIG_SERIAL_PCI
|
11 |
|
|
fi
|
12 |
|
|
fi
|
13 |
|
|
bool 'Digiboard PC/Xx Support' CONFIG_DIGI
|
14 |
|
|
tristate 'Cyclades async mux support' CONFIG_CYCLADES
|
15 |
|
|
if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
|
16 |
|
|
dep_tristate 'Multi-Tech multiport card support' CONFIG_ISI m
|
17 |
|
|
fi
|
18 |
|
|
bool 'Stallion multiport serial support' CONFIG_STALDRV
|
19 |
|
|
if [ "$CONFIG_STALDRV" = "y" ]; then
|
20 |
|
|
tristate ' Stallion EasyIO or EC8/32 support' CONFIG_STALLION
|
21 |
|
|
tristate ' Stallion EC8/64, ONboard, Brumby support' CONFIG_ISTALLION
|
22 |
|
|
fi
|
23 |
|
|
tristate 'SDL RISCom/8 card support' CONFIG_RISCOM8
|
24 |
|
|
tristate 'Parallel printer support' CONFIG_PRINTER
|
25 |
|
|
tristate 'Specialix IO8+ card support' CONFIG_SPECIALIX
|
26 |
|
|
if [ "$CONFIG_SPECIALIX" = "y" -o "$CONFIG_SPECIALIX" = "m" ]; then
|
27 |
|
|
bool 'Specialix DTR/RTS pin is RTS' CONFIG_SPECIALIX_RTSCTS
|
28 |
|
|
fi
|
29 |
|
|
|
30 |
|
|
|
31 |
|
|
bool 'Mouse Support (not serial mice)' CONFIG_MOUSE
|
32 |
|
|
if [ "$CONFIG_MOUSE" = "y" ]; then
|
33 |
|
|
tristate 'ATIXL busmouse support' CONFIG_ATIXL_BUSMOUSE
|
34 |
|
|
tristate 'Logitech busmouse support' CONFIG_BUSMOUSE
|
35 |
|
|
tristate 'Microsoft busmouse support' CONFIG_MS_BUSMOUSE
|
36 |
|
|
tristate 'PS/2 mouse (aka "auxiliary device") support' CONFIG_PSMOUSE
|
37 |
|
|
if [ "$CONFIG_PSMOUSE" != "n" ]; then
|
38 |
|
|
bool 'C&T 82C710 mouse port support (as on TI Travelmate)' CONFIG_82C710_MOUSE
|
39 |
|
|
fi
|
40 |
|
|
fi
|
41 |
|
|
|
42 |
|
|
bool 'Support for user misc device modules' CONFIG_UMISC
|
43 |
|
|
|
44 |
|
|
bool 'QIC-02 tape support' CONFIG_QIC02_TAPE
|
45 |
|
|
if [ "$CONFIG_QIC02_TAPE" = "y" ]; then
|
46 |
|
|
bool 'Do you want runtime configuration for QIC-02' CONFIG_QIC02_DYNCONF
|
47 |
|
|
if [ "$CONFIG_QIC02_DYNCONF" != "y" ]; then
|
48 |
|
|
comment 'Edit configuration parameters in ./include/linux/tpqic02.h!'
|
49 |
|
|
else
|
50 |
|
|
comment 'Setting runtime QIC-02 configuration is done with qic02conf'
|
51 |
|
|
comment 'from the tpqic02-support package. It is available at'
|
52 |
|
|
comment 'ftp://titus.cfw.com/pub/Linux/util/'
|
53 |
|
|
fi
|
54 |
|
|
fi
|
55 |
|
|
|
56 |
|
|
tristate 'Ftape (QIC-80/Travan) support' CONFIG_FTAPE
|
57 |
|
|
if [ "$CONFIG_FTAPE" != "n" ]; then
|
58 |
|
|
comment 'Set IObase/IRQ/DMA for ftape in ./drivers/char/ftape/Makefile'
|
59 |
|
|
fi
|
60 |
|
|
|
61 |
|
|
if [ "$CONFIG_ALPHA_BOOK1" = "y" ]; then
|
62 |
|
|
bool 'Tadpole ANA H8 Support' CONFIG_H8
|
63 |
|
|
fi
|
64 |
|
|
bool 'Watchdog Timer Support' CONFIG_WATCHDOG
|
65 |
|
|
if [ "$CONFIG_WATCHDOG" != "n" ]; then
|
66 |
|
|
bool ' Disable watchdog shutdown on close' CONFIG_WATCHDOG_NOWAYOUT
|
67 |
|
|
tristate ' WDT Watchdog timer' CONFIG_WDT
|
68 |
|
|
if [ "$CONFIG_WDT" != "n" ]; then
|
69 |
|
|
bool ' WDT501 features' CONFIG_WDT_501
|
70 |
|
|
if [ "$CONFIG_WDT_501" = "y" ]; then
|
71 |
|
|
bool ' Fan Tachometer' CONFIG_WDT_501_FAN
|
72 |
|
|
fi
|
73 |
|
|
fi
|
74 |
|
|
tristate ' Software Watchdog' CONFIG_SOFT_WATCHDOG
|
75 |
|
|
tristate ' Berkshire Products PC Watchdog' CONFIG_PCWATCHDOG
|
76 |
|
|
fi
|
77 |
|
|
bool 'Enhanced Real Time Clock Support' CONFIG_RTC
|
78 |
|
|
endmenu
|