Blame view

arch/um/Kconfig.char 4.46 KB
d805a7860   Al Viro   um: clean Kconfig...
1
  menu "UML Character Devices"
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2
3
4
5
6
  
  config STDERR_CONSOLE
  	bool "stderr console"
  	default y
  	help
4c9e13851   Jeff Dike   uml: style fixes ...
7
  	  console driver which dumps all printk messages to stderr.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
8
9
10
11
12
13
14
15
  
  config STDIO_CONSOLE
  	bool
  	default y
  
  config SSL
  	bool "Virtual serial line"
  	help
4c9e13851   Jeff Dike   uml: style fixes ...
16
17
18
            The User-Mode Linux environment allows you to create virtual serial
            lines on the UML that are usually made to show up on the host as
            ttys or ptys.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
19

0ba9d3f91   Karol Swietlicki   uml: fix URLs in ...
20
            See <http://user-mode-linux.sourceforge.net/old/input.html> for more
4c9e13851   Jeff Dike   uml: style fixes ...
21
            information and command line examples of how to use this facility.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
22

4c9e13851   Jeff Dike   uml: style fixes ...
23
            Unless you have a specific reason for disabling this, say Y.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
24
25
26
27
  
  config NULL_CHAN
  	bool "null channel support"
  	help
4c9e13851   Jeff Dike   uml: style fixes ...
28
29
30
            This option enables support for attaching UML consoles and serial
            lines to a device similar to /dev/null.  Data written to it disappears
            and there is never any data to be read.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
31
32
33
34
  
  config PORT_CHAN
  	bool "port channel support"
  	help
4c9e13851   Jeff Dike   uml: style fixes ...
35
36
37
38
39
40
            This option enables support for attaching UML consoles and serial
            lines to host portals.  They may be accessed with 'telnet <host>
            <port number>'.  Any number of consoles and serial lines may be
            attached to a single portal, although what UML device you get when
            you telnet to that portal will be unpredictable.
            It is safe to say 'Y' here.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
41
42
43
44
  
  config PTY_CHAN
  	bool "pty channel support"
  	help
4c9e13851   Jeff Dike   uml: style fixes ...
45
46
47
48
49
50
            This option enables support for attaching UML consoles and serial
            lines to host pseudo-terminals.  Access to both traditional
            pseudo-terminals (/dev/pty*) and pts pseudo-terminals are controlled
            with this option.  The assignment of UML devices to host devices
            will be announced in the kernel message log.
            It is safe to say 'Y' here.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
51
52
53
54
  
  config TTY_CHAN
  	bool "tty channel support"
  	help
4c9e13851   Jeff Dike   uml: style fixes ...
55
56
57
58
59
            This option enables support for attaching UML consoles and serial
            lines to host terminals.  Access to both virtual consoles
            (/dev/tty*) and the slave side of pseudo-terminals (/dev/ttyp* and
            /dev/pts/*) are controlled by this option.
            It is safe to say 'Y' here.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
60
61
62
63
  
  config XTERM_CHAN
  	bool "xterm channel support"
  	help
4c9e13851   Jeff Dike   uml: style fixes ...
64
65
66
67
            This option enables support for attaching UML consoles and serial
            lines to xterms.  Each UML device so assigned will be brought up in
            its own xterm.
            It is safe to say 'Y' here.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
68
69
70
71
72
73
74
75
76
  
  config NOCONFIG_CHAN
  	bool
  	default !(XTERM_CHAN && TTY_CHAN && PTY_CHAN && PORT_CHAN && NULL_CHAN)
  
  config CON_ZERO_CHAN
  	string "Default main console channel initialization"
  	default "fd:0,fd:1"
  	help
4c9e13851   Jeff Dike   uml: style fixes ...
77
78
79
80
81
            This is the string describing the channel to which the main console
            will be attached by default.  This value can be overridden from the
            command line.  The default value is "fd:0,fd:1", which attaches the
            main console to stdin and stdout.
            It is safe to leave this unchanged.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
82
83
84
85
86
  
  config CON_CHAN
  	string "Default console channel initialization"
  	default "xterm"
  	help
4c9e13851   Jeff Dike   uml: style fixes ...
87
88
89
90
91
92
93
            This is the string describing the channel to which all consoles
            except the main console will be attached by default.  This value can
            be overridden from the command line.  The default value is "xterm",
            which brings them up in xterms.
            It is safe to leave this unchanged, although you may wish to change
            this if you expect the UML that you build to be run in environments
            which don't have X or xterm available.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
94
95
96
97
98
  
  config SSL_CHAN
  	string "Default serial line channel initialization"
  	default "pty"
  	help
4c9e13851   Jeff Dike   uml: style fixes ...
99
100
101
102
103
104
105
            This is the string describing the channel to which the serial lines
            will be attached by default.  This value can be overridden from the
            command line.  The default value is "pty", which attaches them to
            traditional pseudo-terminals.
            It is safe to leave this unchanged, although you may wish to change
            this if you expect the UML that you build to be run in environments
            which don't have a set of /dev/pty* devices.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
106

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
107
108
109
  config UML_SOUND
  	tristate "Sound support"
  	help
4c9e13851   Jeff Dike   uml: style fixes ...
110
111
112
113
            This option enables UML sound support.  If enabled, it will pull in
            soundcore and the UML hostaudio relay, which acts as a intermediary
            between the host's dsp and mixer devices and the UML sound system.
            It is safe to say 'Y' here.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
114
115
116
117
  
  config SOUND
  	tristate
  	default UML_SOUND
d886e87cb   Tejun Heo   sound: make OSS s...
118
119
120
  config SOUND_OSS_CORE
  	bool
  	default UML_SOUND
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
121
122
123
  config HOSTAUDIO
  	tristate
  	default UML_SOUND
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
124
  endmenu