ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / arch / um / Kconfig_char
1
2 menu "Character Devices"
3
4 config STDIO_CONSOLE
5         bool
6         default y
7
8 config SSL
9         bool "Virtual serial line"
10         help
11         The User-Mode Linux environment allows you to create virtual serial
12         lines on the UML that are usually made to show up on the host as
13         ttys or ptys.
14
15         See <http://user-mode-linux.sourceforge.net/input.html> for more
16         information and command line examples of how to use this facility.
17
18         Unless you have a specific reason for disabling this, say Y.
19
20 config FD_CHAN
21         bool "file descriptor channel support"
22         help
23         This option enables support for attaching UML consoles and serial
24         lines to already set up file descriptors.  Generally, the main
25         console is attached to file descriptors 0 and 1 (stdin and stdout),
26         so it would be wise to leave this enabled unless you intend to
27         attach it to some other host device.
28
29 config NULL_CHAN
30         bool "null channel support"
31         help
32         This option enables support for attaching UML consoles and serial
33         lines to a device similar to /dev/null.  Data written to it disappears
34         and there is never any data to be read.
35
36 config PORT_CHAN
37         bool "port channel support"
38         help
39         This option enables support for attaching UML consoles and serial
40         lines to host portals.  They may be accessed with 'telnet <host>
41         <port number>'.  Any number of consoles and serial lines may be
42         attached to a single portal, although what UML device you get when
43         you telnet to that portal will be unpredictable.
44         It is safe to say 'Y' here.
45
46 config PTY_CHAN
47         bool "pty channel support"
48         help
49         This option enables support for attaching UML consoles and serial
50         lines to host pseudo-terminals.  Access to both traditional
51         pseudo-terminals (/dev/pty*) and pts pseudo-terminals are controlled
52         with this option.  The assignment of UML devices to host devices
53         will be announced in the kernel message log.
54         It is safe to say 'Y' here.
55
56 config TTY_CHAN
57         bool "tty channel support"
58         help
59         This option enables support for attaching UML consoles and serial
60         lines to host terminals.  Access to both virtual consoles
61         (/dev/tty*) and the slave side of pseudo-terminals (/dev/ttyp* and
62         /dev/pts/*) are controlled by this option.
63         It is safe to say 'Y' here.
64
65 config XTERM_CHAN
66         bool "xterm channel support"
67         help
68         This option enables support for attaching UML consoles and serial
69         lines to xterms.  Each UML device so assigned will be brought up in
70         its own xterm.
71         If you disable this option, then CONFIG_PT_PROXY will be disabled as
72         well, since UML's gdb currently requires an xterm.
73         It is safe to say 'Y' here.
74
75 config CON_ZERO_CHAN
76         string "Default main console channel initialization"
77         default "fd:0,fd:1"
78         help
79         This is the string describing the channel to which the main console
80         will be attached by default.  This value can be overridden from the
81         command line.  The default value is "fd:0,fd:1", which attaches the
82         main console to stdin and stdout.
83         It is safe to leave this unchanged.
84
85 config CON_CHAN
86         string "Default console channel initialization"
87         default "xterm"
88         help
89         This is the string describing the channel to which all consoles
90         except the main console will be attached by default.  This value can
91         be overridden from the command line.  The default value is "xterm",
92         which brings them up in xterms.
93         It is safe to leave this unchanged, although you may wish to change
94         this if you expect the UML that you build to be run in environments
95         which don't have X or xterm available.
96
97 config SSL_CHAN
98         string "Default serial line channel initialization"
99         default "pty"
100         help
101         This is the string describing the channel to which the serial lines
102         will be attached by default.  This value can be overridden from the
103         command line.  The default value is "pty", which attaches them to
104         traditional pseudo-terminals.
105         It is safe to leave this unchanged, although you may wish to change
106         this if you expect the UML that you build to be run in environments
107         which don't have a set of /dev/pty* devices.
108
109 config UNIX98_PTYS
110         bool "Unix98 PTY support"
111
112 config UNIX98_PTY_COUNT
113         int "Maximum number of Unix98 PTYs in use (0-2048)"
114         depends on UNIX98_PTYS
115         default "256"
116
117 config WATCHDOG
118         bool "Watchdog Timer Support"
119
120 config WATCHDOG_NOWAYOUT
121         bool "Disable watchdog shutdown on close"
122         depends on WATCHDOG
123
124 config SOFT_WATCHDOG
125         tristate "Software Watchdog"
126         depends on WATCHDOG
127
128 config UML_WATCHDOG
129         tristate "UML watchdog"
130         depends on WATCHDOG
131
132 config UML_SOUND
133         tristate "Sound support"
134         help
135         This option enables UML sound support.  If enabled, it will pull in
136         soundcore and the UML hostaudio relay, which acts as a intermediary
137         between the host's dsp and mixer devices and the UML sound system.
138         It is safe to say 'Y' here.
139
140 config SOUND
141         tristate
142         default UML_SOUND
143
144 config HOSTAUDIO
145         tristate
146         default UML_SOUND
147
148 endmenu
149