comparison packages/io/serial/current/cdl/tty.cdl @ 76:435cced73e2f ecos-v1_3_1-release

eCos v1.3.1 merged from eCos master repository on 2000-03-27-23:22:51-BST
author jlarmour
date Tue, 28 Mar 2000 14:10:45 +0000
parents
children 6ed91473a1cd
comparison
equal deleted inserted replaced
75:41bf073c0c32 76:435cced73e2f
1 # ====================================================================
2 #
3 # tty.cdl
4 #
5 # eCos serial TTY configuration data
6 #
7 # ====================================================================
8 #####COPYRIGHTBEGIN####
9 #
10 # -------------------------------------------
11 # The contents of this file are subject to the Red Hat eCos Public License
12 # Version 1.1 (the "License"); you may not use this file except in
13 # compliance with the License. You may obtain a copy of the License at
14 # http://www.redhat.com/
15 #
16 # Software distributed under the License is distributed on an "AS IS"
17 # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
18 # License for the specific language governing rights and limitations under
19 # the License.
20 #
21 # The Original Code is eCos - Embedded Configurable Operating System,
22 # released September 30, 1998.
23 #
24 # The Initial Developer of the Original Code is Red Hat.
25 # Portions created by Red Hat are
26 # Copyright (C) 1998, 1999, 2000 Red Hat, Inc.
27 # All Rights Reserved.
28 # -------------------------------------------
29 #
30 #####COPYRIGHTEND####
31 # ====================================================================
32 ######DESCRIPTIONBEGIN####
33 #
34 # Author(s): jskov
35 # Original data: gthomas
36 # Contributors:
37 # Date: 1999-07-07
38 #
39 #####DESCRIPTIONEND####
40 #
41 # ====================================================================
42
43 cdl_component CYGPKG_IO_SERIAL_HALDIAG {
44 display "HAL/diag serial device driver"
45 flavor bool
46 default_value 1
47 description "
48 This option enables the use of the HAL diagnostic channel
49 via the standard I/O drivers."
50 }
51
52 cdl_option CYGDAT_IO_SERIAL_TTY_CONSOLE {
53 display "Console device name"
54 flavor data
55 default_value {"\"/dev/ttydiag\""}
56 description "
57 This option selects the TTY device to use for the console."
58 }
59
60 cdl_component CYGPKG_IO_SERIAL_TTY_TTYDIAG {
61 display "TTY mode HAL/diag channel"
62 flavor bool
63 default_value 1
64 description "
65 This option causes '/dev/ttydiag' to be included in the standard
66 drivers."
67 }
68
69 cdl_component CYGPKG_IO_SERIAL_TTY_TTY0 {
70 display "TTY mode channel #0"
71 flavor bool
72 default_value 0
73 description "
74 This option causes '/dev/tty0' to be included in the standard
75 drivers."
76
77 cdl_option CYGDAT_IO_SERIAL_TTY_TTY0_DEV {
78 display "TTY mode channel #0 device"
79 flavor data
80 default_value { "\"/dev/ser0\"" }
81 description "
82 This option selects the physical device to use for
83 '/dev/tty0'."
84 }
85 }
86 cdl_component CYGPKG_IO_SERIAL_TTY_TTY1 {
87 display "TTY mode channel #1"
88 flavor bool
89 default_value 0
90 description "
91 This option causes '/dev/tty1' to be included in the standard
92 drivers."
93
94 cdl_option CYGDAT_IO_SERIAL_TTY_TTY1_DEV {
95 display "TTY mode channel #1 device"
96 flavor data
97 default_value {"\"/dev/ser1\""}
98 description "
99 This option selects the physical device to use for
100 '/dev/tty1'."
101 }
102 }
103
104 cdl_component CYGPKG_IO_SERIAL_TTY_TTY2 {
105 display "TTY mode channel #2"
106 flavor bool
107 default_value 0
108 description "
109 This option causes '/dev/tty2' to be included in the standard
110 drivers."
111
112 cdl_option CYGDAT_IO_SERIAL_TTY_TTY2_DEV {
113 display "TTY mode channel #2 device"
114 flavor data
115 default_value {"\"/dev/ser2\""}
116 description "
117 This option selects the physical device to use for
118 '/dev/tty2'."
119 }
120 }