OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [tags/] [start/] [gdb-5.0/] [utils/] [amd-udi/] [udi/] [sunudi.cat] - Blame information for rev 1778

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 106 markom
 
2
 
3
 
4
UDI(5)                    FILE FORMATS                     UDI(5)
5
 
6
 
7
 
8
NAME
9
     udi - UDI Configuration Files for SUN hosts.
10
 
11
 
12
 
13
DESCRIPTION
14
     A UDI conformant Debugger Front End (DFE) specifies the Tar-
15
     get Interface Process (TIP) that it wishes to connect to and
16
     the options that it wishes to pass to that TIP by  referenc-
17
     ing  a  configuration in the "UDI configuration file".  This
18
     man page explains the format of the UDI  Configuration  file
19
     for Sun hosts.
20
 
21
     The search rules that the DFE uses to locate the UDI  Confi-
22
     guration file are:
23
 
24
          the complete  filename  specified  by  the  environment
25
          variable, UDICONF.
26
 
27
          the file udi_soc in the current directory.
28
 
29
          the file udi_soc in each of the  directories  specified
30
          by the PATH environment variable.
31
 
32
 
33
     A line of the UDI Configuration File can have two  different
34
     formats  depending  on whether the address family is AF_UNIX
35
     or AF_INET.  The two formats are:
36
 
37
          tip_config_name  AF_UNIX   socket_name   tip_executable
38
          [tip_options]
39
 
40
          tip_config_name    AF_INET    host_name     port_number
41
          [tip_options]
42
 
43
     tip_config_name
44
               An arbitrary name which the DFE will use to  refer
45
               to  this configuration.  Each line in the UDI Con-
46
               figuration   File   must    have    a    different
47
               tip_config_name field.
48
 
49
     AF_UNIX   This address family should be used  when  the  DFE
50
               and TIP are running on the same host.  This is the
51
               typical case.
52
 
53
     AF_INET   This address family should be used  when  the  DFE
54
               and TIP are running on different hosts.
55
 
56
     socket_name
57
               Used with AF_UNIX configurations only.   Specifies
58
               the socket file name which will be used to commun-
59
               icate  between  the  DFE  and  TIP.  The   special
60
 
61
 
62
 
63
UDI Files           Last change: 05 Feb 1992                    1
64
 
65
 
66
 
67
 
68
 
69
 
70
UDI(5)                    FILE FORMATS                     UDI(5)
71
 
72
 
73
 
74
               socket_name  "*"  indicates  that  a unique socket
75
               file name should be automatically generated by the
76
               IPC  layer.   This  is  useful if you want to have
77
               multiple DFEs connecting to the same configuration
78
               name.   If the socket_name is explictly specified,
79
               be aware that if any two  AF_UNIX  TIP  configura-
80
               tions  are  being  used  simultaneously, they must
81
               have unique socket_names.  For DFEs  who  wish  to
82
               disconnect  from  a TIP and then reconnect to that
83
               same  TIP  at  some  later   time,   an   explicit
84
               socket_name is required.
85
 
86
     tip_executable
87
               Used with AF_UNIX configurations  only.   The  DFE
88
               will  use the tip_executable filename to spawn the
89
               TIP if the TIP is not already running and  listen-
90
               ing at the indicated socket_name.  If a full path-
91
               name is not specified, the PATH environment  vari-
92
               able  is used to locate the executable file.  Note
93
               that when the socket_name is "*", a new  TIP  exe-
94
               cutable is always spawned.
95
 
96
 
97
     host_name Used  with  AF_INET  configurations  only.    This
98
               specifies  the  name  of the host where the TIP is
99
               running.
100
 
101
     port_number
102
               Used  with  AF_INET  configurations  only.    This
103
               specifies  the port_number at which the TIP on the
104
               remote host is listening.
105
                 Note that in an AF_INET  configuration  the  TIP
106
               cannot  be  spawned by the DFE and must already be
107
               running at the time of the connection.  The TIP on
108
               the  remote  host should be started with a command
109
               line of
110
                    tip_executable_name AF_INET port_number
111
 
112
 
113
     tip_options
114
               Valid with both AF_UNIX  and   AF_INET  configura-
115
               tions.   This  optional  string  of  parmeters  is
116
               passed through to the TIP at connect time  and  is
117
               usually interpreted by the TIP as a set of startup
118
               parameters.
119
 
120
 
121
EXAMPLES OF UDI CONFIGURATION FILE ENTRIES
122
     The following are examples of entries in the UDI  configura-
123
     tion file on SUN hosts.
124
 
125
 
126
 
127
 
128
 
129
UDI Files           Last change: 05 Feb 1992                    2
130
 
131
 
132
 
133
 
134
 
135
 
136
UDI(5)                    FILE FORMATS                     UDI(5)
137
 
138
 
139
 
140
      iss050  AF_UNIX  *  isstip -29050 -r osboot
141
 
142
          The above entry associates the TIP  configuration  name
143
          "iss050" with the isstip executable with the parameters
144
          "-29050 -r osboot" being passed to isstip when the con-
145
          nection  is  made.   The AF_UNIX address family with an
146
          automatically generated socket name will  be  used   to
147
          communicate  between  DFE  and  TIP.   Because  of  the
148
          automatic socket name generation, a new  invocation  of
149
          isstip  will  always  be created when the iss050 confi-
150
          guration is specified.
151
 
152
      iss050x AF_UNIX  sock_iss50  isstip -29050 -r osboot
153
 
154
          The above entry associates the TIP  configuration  name
155
          "iss050x"  with  the  same  isstip  executable and same
156
          startup  parameters  as  the  previous  example.    The
157
          AF_UNIX  address  family  and  the explicit socket file
158
          name sock_iss50 will be used to communicate between DFE
159
          and  TIP.  If isstip is not already running and listen-
160
          ing on  sock_iss50,  an  instance  of  isstip  will  be
161
          created.
162
 
163
      iss50_remote AF_INET  fasthost 7000 -29050 -r osboot
164
 
165
          The above entry assumes that some TIP is  already  run-
166
          ning  on  the host named fasthost and listening at port
167
          7000. For example, isstip could have  been  started  on
168
          fasthost with the command line
169
               isstip AF_INET  7000  The  parameters  "-29050  -r
170
          osboot"  will  be  passed  to the remote TIP at connect
171
          time.
172
 
173
 
174
TRADEMARKS
175
     AMD is a registered trademark  of  Advanced  Micro  Devices,
176
     Inc.   MiniMON29K,  29K, Am29000, Am29005, Am29030, Am29035,
177
     Am29200, and Am29050 are trademarks of Advanced  Micro  Dev-
178
     ices, Inc.
179
 
180
 
181
 
182
 
183
 
184
 
185
 
186
 
187
 
188
 
189
 
190
 
191
 
192
 
193
 
194
 
195
UDI Files           Last change: 05 Feb 1992                    3
196
 
197
 
198
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.