]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/io/serial/v2_0/cdl/termios.cdl
unified MX27, MX25, MX37 trees
[karo-tx-redboot.git] / packages / io / serial / v2_0 / cdl / termios.cdl
1 # ====================================================================
2 #
3 #      termios.cdl
4 #
5 #      eCos POSIX termios compatible terminal configuration data
6 #
7 # ====================================================================
8 #####ECOSGPLCOPYRIGHTBEGIN####
9 ## -------------------------------------------
10 ## This file is part of eCos, the Embedded Configurable Operating System.
11 ## Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
12 ##
13 ## eCos is free software; you can redistribute it and/or modify it under
14 ## the terms of the GNU General Public License as published by the Free
15 ## Software Foundation; either version 2 or (at your option) any later version.
16 ##
17 ## eCos is distributed in the hope that it will be useful, but WITHOUT ANY
18 ## WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 ## FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
20 ## for more details.
21 ##
22 ## You should have received a copy of the GNU General Public License along
23 ## with eCos; if not, write to the Free Software Foundation, Inc.,
24 ## 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
25 ##
26 ## As a special exception, if other files instantiate templates or use macros
27 ## or inline functions from this file, or you compile this file and link it
28 ## with other works to produce a work based on this file, this file does not
29 ## by itself cause the resulting work to be covered by the GNU General Public
30 ## License. However the source code for this file must still be made available
31 ## in accordance with section (3) of the GNU General Public License.
32 ##
33 ## This exception does not invalidate any other reasons why a work based on
34 ## this file might be covered by the GNU General Public License.
35 ##
36 ## Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
37 ## at http://sources.redhat.com/ecos/ecos-license/
38 ## -------------------------------------------
39 #####ECOSGPLCOPYRIGHTEND####
40 # ====================================================================
41 ######DESCRIPTIONBEGIN####
42 #
43 # Author(s):      jlarmour, gthomas
44 # Contributors:   
45 # Date:           2000-07-22
46 #
47 #####DESCRIPTIONEND####
48 #
49 # ====================================================================
50
51 cdl_interface CYGINT_IO_SERIAL_TERMIOS_TERMIOS_TTY {
52     display    "Interface for termios tty driver file enabling"
53 }
54
55 cdl_option CYGBLD_IO_SERIAL_TERMIOS_TERMIOS_TTY {
56     display    "Build termios tty driver file"
57     calculated 1
58     active_if  { CYGINT_IO_SERIAL_TERMIOS_TERMIOS_TTY > 0 }
59     compile    -library=libextras.a common/termiostty.c
60 }
61
62
63 cdl_component CYGPKG_IO_SERIAL_TERMIOS_TERMIOS0 {
64     display       "Termios TTY channel #0"
65     flavor        bool
66     default_value 0
67     implements    CYGINT_IO_SERIAL_TERMIOS_TERMIOS_TTY
68     description   "
69         This option causes '/dev/termios0' to be included in the standard 
70         drivers."
71
72     cdl_option CYGDAT_IO_SERIAL_TERMIOS_TERMIOS0_DEV {
73         display       "Termios TTY channel #0 device"
74         flavor        data
75         default_value { "\"/dev/ser0\"" }
76         description   "
77             This option selects the physical device to use for 
78             '/dev/termios0'."
79     }
80 }
81 cdl_component CYGPKG_IO_SERIAL_TERMIOS_TERMIOS1 {
82     display       "Termios TTY channel #1"
83     flavor        bool
84     default_value 0
85     implements    CYGINT_IO_SERIAL_TERMIOS_TERMIOS_TTY
86     description   "
87         This option causes '/dev/termios1' to be included in the standard 
88         drivers."
89
90     cdl_option CYGDAT_IO_SERIAL_TERMIOS_TERMIOS1_DEV {
91         display       "Termios TTY channel #1 device"
92         flavor        data
93         default_value {"\"/dev/ser1\""}
94         description   "
95             This option selects the physical device to use for 
96             '/dev/termios1'."
97     }
98 }
99
100 cdl_component CYGPKG_IO_SERIAL_TERMIOS_TERMIOS2 {
101     display       "Termios TTY channel #2"
102     flavor        bool
103     default_value 0
104     implements    CYGINT_IO_SERIAL_TERMIOS_TERMIOS_TTY
105     description   "
106         This option causes '/dev/termios2' to be included in the standard 
107         drivers."
108
109     cdl_option CYGDAT_IO_SERIAL_TERMIOS_TERMIOS2_DEV {
110         display       "Termios TTY channel #2 device"
111         flavor        data
112         default_value {"\"/dev/ser2\""}
113         description   "
114             This option selects the physical device to use for 
115             '/dev/termios2'."
116     }
117 }
118
119 cdl_component CYGPKG_IO_SERIAL_TERMIOS_TERMIOS3 {
120     display       "Termios TTY channel #3"
121     flavor        bool
122     default_value 0
123     implements    CYGINT_IO_SERIAL_TERMIOS_TERMIOS_TTY
124     description   "
125         This option causes '/dev/termios3' to be included in the standard 
126         drivers."
127
128     cdl_option CYGDAT_IO_SERIAL_TERMIOS_TERMIOS3_DEV {
129         display       "Termios TTY channel #3 device"
130         flavor        data
131         default_value {"\"/dev/ser3\""}
132         description   "
133             This option selects the physical device to use for 
134             '/dev/termios3'."
135     }
136 }
137
138 cdl_option CYGSEM_IO_SERIAL_TERMIOS_USE_SIGNALS {
139     display         "Support signals"
140     flavor          bool
141     requires        CYGINT_ISO_SIGNAL_NUMBERS
142     requires        CYGINT_ISO_SIGNAL_IMPL
143     default_value   { CYGINT_ISO_SIGNAL_NUMBERS != 0 && \
144                       CYGINT_ISO_SIGNAL_IMPL != 0 }
145     description     "This option selects whether those parts of the termios
146                      interface involving signals is supported. This includes
147                      BRKINT mode, the INTR and QUIT characters, and whether
148                      SIGHUP is sent on terminal close."
149 }
150
151 # EOF termios.cdl