]> rtime.felk.cvut.cz Git - novaboot.git/blob - README.md
Remove $iprelay configuration variable
[novaboot.git] / README.md
1 # NAME
2
3 novaboot - A tool for booting various operating systems on various hardware or in qemu
4
5 # SYNOPSIS
6
7 __novaboot__ \[ options \] \[--\] script...
8
9 __./script__ \[ options \]
10
11 __novaboot__ --help
12
13 # DESCRIPTION
14
15 This program makes it easier to boot NOVA or other operating system
16 (OS) in different environments. It reads a so called novaboot script
17 and uses it either to boot the OS in an emulator (e.g. in qemu) or to
18 generate the configuration for a specific bootloader and optionally to
19 copy the necessary binaries and other needed files to proper
20 locations, perhaps on a remote server. In case the system is actually
21 booted, its serial output is redirected to standard output if that is
22 possible.
23
24 A typical way of using novaboot is to make the novaboot script
25 executable and set its first line to _\#!/usr/bin/env novaboot_. Then,
26 booting a particular OS configuration becomes the same as executing a
27 local program - the novaboot script.
28
29 With `novaboot` you can:
30
31 1. Run an OS in Qemu. This is the default action when no other action is
32 specified by command line switches. Thus running `novaboot ./script`
33 (or `./script` as described above) will run Qemu and make it boot the
34 configuration specified in the _script_.
35 2. Create a bootloader configuration file (currently supported
36 bootloaders are GRUB, GRUB2 and Pulsar) and copy it with all other
37 files needed for booting to another, perhaps remote, location.
38
39         ./script --server --iprelay=192.168.1.2
40
41     This command copies files to a TFTP server specified in the
42     configuration file and uses TCP/IP-controlled relay to reset the test
43     box and receive its serial output.
44
45 3. Run DHCP and TFTP server on developer's machine to PXE-boot NOVA from
46 it. E.g.
47
48         ./script --dhcp-tftp
49
50     When a PXE-bootable machine is connected via Ethernet to developer's
51     machine, it will boot the configuration described in _script_.
52
53 4. Create bootable ISO images. E.g.
54
55         novaboot --iso -- script1 script2
56
57     The created ISO image will have GRUB bootloader installed on it and
58     the boot menu will allow selecting between _script1_ and _script2_
59     configurations.
60
61 # PHASES AND OPTIONS
62
63 Novaboot perform its work in several phases. Each phase can be
64 influenced by several options, certain phases can be skipped. The list
65 of phases with the corresponding options follows.
66
67 ## Configuration reading phase
68
69 After starting, novaboot reads configuration files. By default, it
70 searches for files named `.novaboot` starting from the directory of
71 the novaboot script (or working directory, see bellow) and continuing
72 upwards up to the root directory. The configuration files are read in
73 order from the root directory downwards with latter files overriding
74 settings from the former ones.
75
76 In certain cases, the location of the novaboot script cannot be
77 determined in this early phase. This happens either when the script is
78 read from the standard input or when novaboot is invoked explicitly
79 and options precede the script name, as in the example ["4."](#4.) above.
80 In this case the current working directory is used as a starting point
81 for configuration file search.
82
83 - \-c, --config=<filename>
84
85     Use the specified configuration file instead of the default one(s).
86
87 ## Command line processing phase
88
89 - \--dump-config
90
91     Dump the current configuration to stdout end exits. Useful as an
92     initial template for a configuration file.
93
94 - \-h, --help
95
96     Print short (__\-h__) or long (__\--help__) help.
97
98 - \-t, --target=<target>
99
100     This option serves as a user configurable shortcut for other novaboot
101     options. The effect of this option is the same as the options stored
102     in the `%targets` configuration variable under key _target_. See
103     also ["CONFIGURATION FILE"](#CONFIGURATION FILE).
104
105 ## Script preprocessing phase
106
107 This phases allows to modify the parsed novaboot script before it is
108 used in the later phases.
109
110 - \-a, --append=<parameters>
111
112     Appends a string to the first "filename" line in the novaboot script.
113     This can be used to append parameters to the kernel's or root task's
114     command line.
115
116 - \-b, --bender
117
118     Use `bender` chainloader. Bender scans the PCI bus for PCI serial
119     ports and stores the information about them in the BIOS data area for
120     use by the kernel.
121
122 - \--dump
123
124     Prints the content of the novaboot script after removing comments and
125     evaluating all _\--scriptmod_ expressions. Exit after reading (and
126     dumping) the script.
127
128 - \--scriptmod=_perl expression_
129
130     When novaboot script is read, _perl expression_ is executed for every
131     line (in $\_ variable). For example, `novaboot
132     --scriptmod=s/sigma0/omega6/g` replaces every occurrence of _sigma0_
133     in the script with _omega6_.
134
135     When this option is present, it overrides _$script\_modifier_ variable
136     from the configuration file, which has the same effect. If this option
137     is given multiple times all expressions are evaluated in the command
138     line order.
139
140 - \--strip-rom
141
142     Strip _rom://_ prefix from command lines and generated config files.
143     The _rom://_ prefix is used by NUL. For NRE, it has to be stripped.
144
145 ## File generation phase
146
147 In this phase, files needed for booting are generated in a so called
148 _build directory_ (see TODO). In most cases configuration for a
149 bootloader is generated automatically by novaboot. It is also possible
150 to generate other files using _heredoc_ or _"<"_ syntax in novaboot
151 scripts. Finally, binaries can be generated in this phases by running
152 `scons` or `make`.
153
154 - \--build-dir=<directory>
155
156     Overrides the default build directory location.
157
158     The default build directory location is determined as follows:
159
160     If there is a configuration file, the value specified in the
161     _$builddir_ variable is used. Otherwise, if the current working
162     directory is inside git work tree and there is `build` directory at
163     the top of that tree, it is used. Otherwise, if directory
164     `~/nul/build` exists, it is used. Otherwise, it is the directory that
165     contains the first processed novaboot script.
166
167 - \-g, --grub\[=_filename_\]
168
169     Generates grub bootloader menu file. If the _filename_ is not
170     specified, `menu.lst` is used. The _filename_ is relative to the
171     build directory (see __\--build-dir__).
172
173 - \--grub-preamble=_prefix_
174
175     Specifies the _preable_ that is at the beginning of the generated
176     GRUB or GRUB2 config files. This is useful for specifying GRUB's
177     timeout.
178
179 - \--grub-prefix=_prefix_
180
181     Specifies _prefix_ that is put in front of every file name in GRUB's
182     `menu.lst`. The default value is the absolute path to the build directory.
183
184     If the _prefix_ contains string $NAME, it will be replaced with the
185     name of the novaboot script (see also __\--name__).
186
187 - \--grub2\[=_filename_\]
188
189     Generate GRUB2 menuentry in _filename_. If _filename_ is not
190     specified `grub.cfg` is used. The content of the menuentry can be
191     customized with __\--grub-preable__, __\--grub2-prolog__ or
192     __\--grub\_prefix__ options.
193
194     In order to use the the generated menuentry on your development
195     machine that uses GRUB2, append the following snippet to
196     `/etc/grub.d/40\_custom` file and regenerate your grub configuration,
197     i.e. run update-grub on Debian/Ubuntu.
198
199         if [ -f /path/to/nul/build/grub.cfg ]; then
200           source /path/to/nul/build/grub.cfg
201         fi
202
203 - \--grub2-prolog=_prolog_
204
205     Specifies text _preable_ that is put at the begiging of the entry
206     GRUB2 entry.
207
208 - \--name=_string_
209
210     Use the name _string_ instead of the name of the novaboot script.
211     This name is used for things like a title of grub menu or for the
212     server directory where the boot files are copied to.
213
214 - \--no-file-gen
215
216     Do not generate files on the fly (i.e. "<" syntax) except for the
217     files generated via "<<WORD" syntax.
218
219 - \-p, --pulsar\[=mac\]
220
221     Generates pulsar bootloader configuration file whose name is based on
222     the MAC address specified either on the command line or taken from
223     _.novaboot_ configuration file.
224
225 ## File deployment phase
226
227 In some setups, it is necessary to copy the files needed for booting
228 to a particular location, e.g. to a TFTP boot server or to the
229 `/boot` partition.
230
231 - \-d, --dhcp-tftp
232
233     Turns your workstation into a DHCP and TFTP server so that NOVA
234     can be booted via PXE BIOS on a test machine directly connected by
235     a plain Ethernet cable to your workstation.
236
237     The DHCP and TFTP servers require root privileges and `novaboot`
238     uses `sudo` command to obtain those. You can put the following to
239     _/etc/sudoers_ to allow running the necessary commands without
240     asking for password.
241
242         Cmnd_Alias NOVABOOT = /bin/ip a add 10.23.23.1/24 dev eth0, /bin/ip l set dev eth0 up, /usr/sbin/dhcpd -d -cf dhcpd.conf -lf dhcpd.leases -pf dhcpd.pid, /usr/sbin/in.tftpd --foreground --secure -v -v -v *, /usr/bin/touch dhcpd.leases
243         your_login ALL=NOPASSWD: NOVABOOT
244
245 - \-i, --iso\[=filename\]
246
247     Generates the ISO image that boots NOVA system via GRUB. If no filename
248     is given, the image is stored under _NAME_.iso, where _NAME_ is the name
249     of the novaboot script (see also __\--name__).
250
251 - \--server\[=\[\[user@\]server:\]path\]
252
253     Copy all files needed for booting to another location (implies __\-g__
254     unless __\--grub2__ is given). The files will be copied (by __rsync__
255     tool) to the directory _path_. If the _path_ contains string $NAME,
256     it will be replaced with the name of the novaboot script (see also
257     __\--name__).
258
259 - \--concat
260
261     If __\--server__ is used and its value ends with $NAME, then after
262     copying the files, a new bootloader configuration file (e.g. menu.lst)
263     is created at _path-wo-name_, i.e. the path specified by __\--server__
264     with $NAME part removed. The content of the file is created by
265     concatenating all files of the same name from all subdirectories of
266     _path-wo-name_ found on the "server".
267
268 - \--rsync-flags=_flags_
269
270     Specifies which _flags_ are appended to `rsync` command line when
271     copying files as a result of _\--server_ option.
272
273 - \--scons\[=scons command\]
274
275     Runs _scons_ to build files that are not generated by novaboot
276     itself.
277
278 ## Target power-on and reset phase
279
280 - \--iprelay=_addr\[:port\]_
281
282     Use IP relay to reset the machine and to get the serial output. The IP
283     address of the relay is given by _addr_ parameter.
284
285     Note: This option is expected to work with HWG-ER02a IP relays.
286
287 - \--on, --off
288
289     Switch on/off the target machine. Currently works only with
290     __\--iprelay__.
291
292 - \-Q, --qemu=_qemu-binary_
293
294     The name of qemu binary to use. The default is 'qemu'.
295
296 - \--qemu-append=_flags_
297
298     Append _flags_ to the default qemu flags (QEMU\_FLAGS variable or
299     `-cpu coreduo -smp 2`).
300
301 - \-q, --qemu-flags=_flags_
302
303     Replace the default qemu flags (QEMU\_FLAGS variable or `-cpu coreduo
304     -smp 2`) with _flags_ specified here.
305
306 ## Interaction with the bootloader on the target
307
308 See __\--serial__. There will be new options soon.
309
310 ## Target's output reception phase
311
312 - \-s, --serial\[=device\]
313
314     Use serial line to control GRUB bootloader and to see the output
315     serial output of the machine. The default value is `/dev/ttyUSB0`.
316
317 See also __\--iprelay__.
318
319 ## Termination phase
320
321 Daemons that were spwned (`dhcpd` and `tftpd`) are killed here.
322
323 # NOVABOOT SCRIPT SYNTAX
324
325 The syntax tries to mimic POSIX shell syntax. The syntax is defined with the following rules.
326
327 Lines starting with "\#" are ignored.
328
329 Lines that end with "\\" are concatenated with the following line after
330 removal of the final "\\" and leading whitespace of the following line.
331
332 Lines in the form _VARIABLE=..._ (i.e. matching '^\[A-Z\_\]+=' regular
333 expression) assign values to internal variables. See VARIABLES
334 section.
335
336 Otherwise, the first word on the line represents the filename
337 (relative to the build directory (see __\--build-dir__) of the module to
338 load and the remaining words are passed as the command line
339 parameters.
340
341 When the line ends with "<<WORD" then the subsequent lines until the
342 line containing only WORD are copied literally to the file named on
343 that line.
344
345 When the line ends with "< CMD" the command CMD is executed with
346 `/bin/sh` and its standard output is stored in the file named on that
347 line. The SRCDIR variable in CMD's environment is set to the absolute
348 path of the directory containing the interpreted novaboot script.
349
350 Example:
351   \#!/usr/bin/env novaboot
352   WVDESC=Example program
353   bin/apps/sigma0.nul S0\_DEFAULT script\_start:1,1 \\
354     verbose hostkeyb:0,0x60,1,12,2
355   bin/apps/hello.nul
356   hello.nulconfig <<EOF
357   sigma0::mem:16 name::/s0/log name::/s0/timer name::/s0/fs/rom ||
358   rom://bin/apps/hello.nul
359   EOF
360
361 This example will load three modules: sigma0.nul, hello.nul and
362 hello.nulconfig. sigma0 gets some command line parameters and
363 hello.nulconfig file is generated on the fly from the lines between
364 <<EOF and EOF.
365
366 ## VARIABLES
367
368 The following variables are interpreted in the novaboot script:
369
370 - WVDESC
371
372     Description of the wvtest-compliant program.
373
374 - WVTEST\_TIMEOUT
375
376     The timeout in seconds for WvTest harness. If no complete line appears
377     in the test output within the time specified here, the test fails. It
378     is necessary to specify this for long running tests that produce no
379     intermediate output.
380
381 - QEMU
382
383     Use a specific qemu binary (can be overriden with __\-Q__) and flags
384     when booting this script under qemu. If QEMU\_FLAGS variable is also
385     specified flags specified in QEMU variable are replaced by those in
386     QEMU\_FLAGS.
387
388 - QEMU\_FLAGS
389
390     Use specific qemu flags (can be overriden with __\-q__).
391
392 - HYPERVISOR\_PARAMS
393
394     Parameters passed to hypervisor. The default value is "serial", unless
395     overriden in configuration file.
396
397 - KERNEL
398
399     The kernel to use instead of NOVA hypervisor specified in the
400     configuration file. The value should contain the name of the kernel
401     image as well as its command line parameters. If this variable is
402     defined and non-empty, the variable HYPERVISOR\_PARAMS is not used.
403
404 # CONFIGURATION FILE
405
406 Novaboot can read its configuration from a file. Configuration file
407 was necessary in early days of novaboot. Nowadays, an attempt is made
408 to not use the configuration file because it makes certain novaboot
409 scripts unusable on systems without (or with different) configuration
410 file. The only recommended use of the configuration file is to specify
411 custom\_options (see bellow).
412
413 If you decide to use the configuration file, it is looked up, by
414 default, in files named `.novaboot` as described in ["Configuration reading phase"](#Configuration reading phase). Alternatively, its location can be specified with the
415 __\-c__ switch or with the NOVABOOT\_CONFIG environment variable. The
416 configuration file has perl syntax and should set values of certain
417 Perl variables. The current configuration can be dumped with the
418 __\--dump-config__ switch. Some configuration variables can be overriden
419 by environment variables (see below) or by command line switches.
420
421 Documentation of some configuration variables follows:
422
423 - @chainloaders
424
425     Custom chainloaders to load before hypervisor and files specified in
426     novaboot script. E.g. ('bin/boot/bender promisc', 'bin/boot/zapp').
427
428 - %targets
429
430     Hash of shortcuts to be used with the __\--target__ option. If the hash
431     contains, for instance, the following pair of values
432
433         'mybox' => '--server=boot:/tftproot --serial=/dev/ttyUSB0 --grub',
434
435     then the following two commands are equivalent:
436
437         ./script --server=boot:/tftproot --serial=/dev/ttyUSB0 --grub
438         ./script -t mybox
439
440 # ENVIRONMENT VARIABLES
441
442 Some options can be specified not only via config file or command line
443 but also through environment variables. Environment variables override
444 the values from configuration file and command line parameters
445 override the environment variables.
446
447 - NOVABOOT\_CONFIG
448
449     Name of the novaboot configuration file to use instead of the default
450     one(s).
451
452 - NOVABOOT\_BENDER
453
454     Defining this variable has the same meaning as __\--bender__ option.
455
456 # AUTHORS
457
458 Michal Sojka <sojka@os.inf.tu-dresden.de>