/[gxemul]/upstream/0.4.2/doc/configfiles.html
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /upstream/0.4.2/doc/configfiles.html

Parent Directory Parent Directory | Revision Log Revision Log


Revision 31 - (show annotations)
Mon Oct 8 16:20:48 2007 UTC (16 years, 7 months ago) by dpavlin
File MIME type: text/html
File size: 10431 byte(s)
0.4.2
1 <html><head><title>Gavare's eXperimental Emulator:&nbsp;&nbsp;&nbsp;Configuration files</title>
2 <meta name="robots" content="noarchive,nofollow,noindex"></head>
3 <body bgcolor="#f8f8f8" text="#000000" link="#4040f0" vlink="#404040" alink="#ff0000">
4 <table border=0 width=100% bgcolor="#d0d0d0"><tr>
5 <td width=100% align=center valign=center><table border=0 width=100%><tr>
6 <td align="left" valign=center bgcolor="#d0efff"><font color="#6060e0" size="6">
7 <b>Gavare's eXperimental Emulator:</b></font><br>
8 <font color="#000000" size="6"><b>Configuration files</b>
9 </font></td></tr></table></td></tr></table><p>
10
11 <!--
12
13 $Id: configfiles.html,v 1.25 2006/06/22 13:22:40 debug Exp $
14
15 Copyright (C) 2003-2006 Anders Gavare. All rights reserved.
16
17 Redistribution and use in source and binary forms, with or without
18 modification, are permitted provided that the following conditions are met:
19
20 1. Redistributions of source code must retain the above copyright
21 notice, this list of conditions and the following disclaimer.
22 2. Redistributions in binary form must reproduce the above copyright
23 notice, this list of conditions and the following disclaimer in the
24 documentation and/or other materials provided with the distribution.
25 3. The name of the author may not be used to endorse or promote products
26 derived from this software without specific prior written permission.
27
28 THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
29 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31 ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
32 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 SUCH DAMAGE.
39
40 -->
41
42 <a href="./">Back to the index</a>
43
44 <p><br>
45 <h2>Configuration files</h2>
46
47 <p>
48 <ul>
49 <li><a href="#config">Configuration file syntax</a>
50 <li><a href="#minimal">A minimal example</a>
51 <li><a href="#multihost">Network across multiple hosts</a>
52 </ul>
53
54
55
56
57 <p><br>
58 <a name="config"></a>
59 <h3>Configuration file syntax:</h3>
60
61 Configuration files are simple text files. I don't have time to write
62 down a formal syntax right now, so I hope that conveying the syntax
63 through an example is good enough:
64
65 <p>
66 <table border="0"><tr><td width="40">&nbsp;</td><td>
67 <pre>
68 <font color="#2020cf">! This is an example configuration file for GXemul.
69 ! Anything following an exclamation mark (and also the exclamation
70 ! mark itself) is ignored.
71 !
72 ! Almost all settings are optional.</font>
73
74 <b>name(<font color="#ff003f">"my test emul"</font>)</b> <font color="#2020cf">! Optional name of this emulation</font>
75
76 <font color="#2020cf">! This creates an ethernet network:</font>
77 <b>net(</b>
78 <b>ipv4net(<font color="#ff003f">"10.2.0.0"</font>)</b> <font color="#2020cf">! The default is 10.0.0.0/8, but</font>
79 <b>ipv4len(16)</b> <font color="#2020cf">! it can be overridden like this.</font>
80 <font color="#2020cf">! local_port(12345)</font>
81 <font color="#2020cf">! add_remote("localhost:12346")</font>
82 <b>)</b>
83
84 <font color="#2020cf">! This creates a machine:</font>
85 <b>machine(</b>
86 <b>name(<font color="#ff003f">"My test machine"</font>)</b>
87
88 <font color="#2020cf">! serial_nr(123) ! Useful when emulating multiple machines</font>
89 <font color="#2020cf"> ! on multiple hosts, and they need to have</font>
90 <font color="#2020cf"> ! unique MAC addresses, etc.</font>
91
92 <b>type(<font color="#ff003f">"dec"</font>)</b> <font color="#2020cf">! This is actually not optional</font>
93 <b>subtype(<font color="#ff003f">"5000/200"</font>)</b>
94
95 <b>cpu(<font color="#ff003f">"R3000"</font>)</b> <font color="#2020cf">! Normally set implicitly to a reasonable</font>
96 <font color="#2020cf">! value, depending on <i>type</i> and <i>subtype</i></font>
97
98 <font color="#2020cf">! ncpus(4)</font>
99 <font color="#2020cf">! use_random_bootstrap_cpu(yes)</font>
100
101 <b>memory(128)</b> <font color="#2020cf">! 128 MB memory. This overrides</font>
102 <font color="#2020cf">! the default amount of memory for</font>
103 <font color="#2020cf">! this machine type.</font>
104
105 <font color="#2020cf">! random_mem_contents(yes)</font>
106
107 <font color="#2020cf">! prom_emulation(no)</font>
108
109 <font color="#2020cf">! byte_order(big) ! Normally set implicitly (because</font>
110 <font color="#2020cf">! of <i>type</i> and <i>subtype</i>, or decided</font>
111 <font color="#2020cf">! from the file loaded with <i>load</i></font>
112
113 <b>load(<font color="#ff003f">"netbsd-INSTALL"</font>)</b>
114 <b>bootname(<font color="#ff003f">"netbsd"</font>)</b>
115 <b>bootarg(<font color="#ff003f">"-a"</font>)</b>
116
117 <font color="#2020cf">! n_gfx_cards(2) ! for DECstation dual/tripple-head</font>
118 <font color="#2020cf">! emulated_hz(10000000) ! for fixing the emulated clock speed</font>
119
120 <font color="#2020cf">! add_x11_display("otherbox:0") ! for dual/tripple-head etc</font>
121 <font color="#2020cf">! add_x11_display("thisbox:0")</font>
122
123 <font color="#2020cf">{
124 Devices can be added like this:
125
126 device("8250 addr=0x18000800 addr_mult=4")
127
128 The name comes first, followed by optional parameters.
129 Remember to use 0x for hexadecimal values.
130 }</font>
131
132 <font color="#2020cf">! force_netboot(yes)</font>
133 <font color="#2020cf">! start_paused(yes)</font>
134
135 <b>disk(<font color="#ff003f">"nbsd.img"</font>)</b>
136 <b>disk(<font color="#ff003f">"6c:cdrom.iso"</font>)</b>
137
138 <b>use_x11(yes)</b>
139 <b>x11_scaledown(2)</b>
140
141 <font color="#2020cf">! slow_serial_interrupts_hack_for_linux(yes)</font>
142
143 <font color="#2020cf">{
144 Long comments spanning multiple lines should be surrounded
145 with tuborg parentheses.
146
147 { Long comments can be nested. }
148 <!--
149 <b><i>... TODO ...
150 -i display each instruction as it is executed
151 -J disable some speed tricks
152 -m nr run at most nr instructions (on any cpu)
153 -N display nr of instructions/second average, at regular intervals
154 -p pc add a breakpoint (remember to use the '0x' prefix for hex!)
155 -r register dumps before every instruction
156 -t show function trace tree
157 </i></b>-->
158 }</font>
159
160 <b>)</b>
161
162 <font color="#2020cf">! Multiple machine definitions are allowed.</font>
163 <b>machine(</b>
164 <b>name(<font color="#ff003f">"another machine"</font>)</b>
165 <b>type(<font color="#ff003f">"hpcmips"</font>)</b>
166 <b>subtype(<font color="#ff003f">"be300"</font>)</b>
167
168 <i>...</i>
169 <b>)</b>
170 </pre>
171 </td></tr></table>
172
173 <p>
174 Starting the emulator with a configuration file is as simple as
175
176 <pre>
177 $ <b>gxemul @myconfig</b>
178 </pre>
179
180 if <b>myconfig</b> is the name of the configuration file.
181
182
183
184
185
186
187
188
189 <p><br>
190 <a name="minimal"></a>
191 <h3>A minimal example:</h3>
192
193 Here is an example of what a minimal configuration file might look like:
194
195 <p><table border="0"><tr><td width="40">&nbsp;</td><td><pre>
196 <b>machine(</b>
197 <b>subtype(<font color="#ff003f">"3max"</font>)</b>
198 <b>load(<font color="#ff003f">"netbsd-pmax-INSTALL-2.0"</font>)</b>
199 <b>)</b>
200 </pre>
201 </td></tr></table>
202
203 <p>For most machine types, <tt>type</tt> is needed. If only
204 <tt>subtype</tt> is specified, and the name is unique (i.e. there is only
205 one major type which has such a subtype), then the <tt>type</tt> can be
206 omitted. Also, adding a <tt>net</tt> is quite useful, especially for
207 netbooting kernels.
208
209
210
211
212
213
214 <p><br>
215 <a name="multihost"></a>
216 <h3>Network across multiple hosts:</h3>
217
218 <p>It is possible to add multiple <tt>machine</tt> entries into one
219 configuration file. This will cause the emulator to try to run all those
220 machines simultaneously. An alternative (and better) solution for doing
221 this, which gives higher reliability (stability) and performance, is to
222 have one configuration file per emulated machine.
223
224 <p><table border="0" width="100%"><tr><td width="40">&nbsp;</td>
225 <td><pre>
226 <font color="#2020cf">! Configuration file for a
227 ! "client" machine, netbooting
228 ! of another machine.</font>
229
230 <b>net(</b>
231 <b>local_port(15000)</b>
232 <b>add_remote(<font color="#ff003f">"localhost:15001"</font>)</b>
233 <b>)</b>
234 <b>machine(</b>
235 <b>name(<font color="#ff003f">"client machine"</font>)</b>
236 <b>serial_nr(1)</b> <font color="#2020cf">! 10.0.0.1</font>
237
238 <b>type(<font color="#ff003f">"sgi"</font>)</b>
239 <b>subtype(<font color="#ff003f">"o2"</font>)</b>
240 <b>load(<font color="#ff003f">"netbsd-GENERIC32_IP3x.gz"</font>)</b>
241 <b>)</b>
242 </pre></td><td width="20">&nbsp;</td><td><pre>
243 <font color="#2020cf">! Configuration file for the
244 ! "server" machine.</font>
245
246 <b>net(</b>
247 <b>local_port(15001)</b>
248 <b>add_remote(<font color="#ff003f">"localhost:15000"</font>)</b>
249 <b>)</b>
250 <b>machine(</b>
251 <b>name(<font color="#ff003f">"nfs server"</font>)</b>
252 <b>serial_nr(2)</b> <font color="#2020cf">! 10.0.0.2</font>
253
254 <b>type(<font color="#ff003f">"dec"</font>)</b>
255 <b>subtype(<font color="#ff003f">"3max"</font>)</b>
256 <b>disk(<font color="#ff003f">"nbsd_pmax.img"</font>)</b>
257 <b>)</b>
258 </pre></td><td width="20">&nbsp;</td></tr></table>
259
260 <p>This example creates a network using the default settings (10.0.0.0/8),
261 but it also allows the network to be connected to other emulator
262 instances. <tt>local_port(15000)</tt> means that anything coming in to
263 UDP port 15000 on the host is added to the network. All ethernet packets
264 on the network are also sent out to all other connected machines (those
265 added with <tt>add_remote()</tt>).
266
267 <p>As you can see in the example, this is a configuration file for
268 netbooting a NetBSD/sgimips diskless machine, with a NetBSD/pmax machine
269 acting as the nfs server. Note that the nfs server has ports 15000 and
270 15001 reversed!
271
272 <p>"<tt>localhost</tt>" can be changed to the Internet hostname of a
273 remote machine, to run the simulation across a physical network.
274
275 <p><font color="#ff0000"><b>NOTE:</b> There is no error checking or
276 security checking of any kind. All UDP packets arriving at the input port
277 are added to the emulated ethernet. This is not very good of course; use
278 this feature at your own risk.</font>
279
280
281
282
283 </p>
284
285 </body>
286 </html>

  ViewVC Help
Powered by ViewVC 1.1.26