]> rtime.felk.cvut.cz Git - novaboot.git/blob - README.md
doc: Be more explicit in the introduction to "Configuration reading phase"
[novaboot.git] / README.md
1 # NAME
2
3 novaboot - Boots a locally compiled operating system on a remote
4 target or in qemu
5
6 # SYNOPSIS
7
8 **novaboot** --help
9
10 **novaboot** \[option\]... \[--\] script...
11
12 **./script** \[option\]...
13
14 # DESCRIPTION
15
16 This program makes booting of a locally compiled operating system (OS)
17 (e.g. NOVA or Linux) on remote targets as simple as running a program
18 locally. It automates things like copying OS images to a TFTP server,
19 generation of bootloader configuration files, resetting of target
20 hardware or redirection of target's serial line to stdin/out. Novaboot
21 is highly configurable and it makes it easy to boot a single image on
22 different targets or different images on a single target.
23
24 Novaboot operation is controlled by command line options and by a so
25 called novaboot script, which can be thought as a generalization of
26 bootloader configuration files (see ["NOVABOOT SCRIPT SYNTAX"](#novaboot-script-syntax)).
27 Typical way of using novaboot is to make the novaboot script
28 executable and set its first line to _#!/usr/bin/env novaboot_. Then,
29 booting a particular OS configuration becomes the same as executing a
30 local program - the novaboot script.
31
32 Novaboot uses configuration files to, among other things, define
33 command line options needed for different targets. Users typically use
34 only the **-t**/**--target** command line option to select the target.
35 Internally, this option expands to the pre-configured options.
36 Configuration files are searched at multiple places, which allows to
37 have per-system, per-user or per-project configurations. Configuration
38 file syntax is described in section ["CONFIGURATION FILE"](#configuration-file).
39
40 Simple examples of using `novaboot`:
41
42 1. Run an OS in Qemu. This is the default action when no other action is
43 specified by command line switches. Thus running `novaboot myos` (or
44 `./myos` as described above) will run Qemu and make it boot the
45 configuration specified in the `myos` script.
46 2. Create a bootloader configuration file (currently supported
47 bootloaders are GRUB, GRUB2, ISOLINUX, Pulsar and U-Boot) and copy it
48 with all other files needed for booting to a remote boot server. Then
49 use a TCP/IP-controlled relay/serial-to-TCP converter to reset the
50 target and receive its serial output.
51
52         ./myos --grub2 --server=192.168.1.1:/tftp --iprelay=192.168.1.2
53
54 3. Run DHCP and TFTP server on developer's machine to boot the target
55 from it.
56
57         ./myos --dhcp-tftp
58
59     This is useful when no network infrastructure is in place and
60     the target is connected directly to developer's box.
61
62 4. Create bootable ISO image.
63
64         novaboot --iso -- script1 script2
65
66     The created ISO image will have ISOLINUX bootloader installed on it
67     and the boot menu will allow selecting between _script1_ and
68     _script2_ configurations.
69
70 # PHASES AND OPTIONS
71
72 Novaboot performs its work in several phases. Each phase can be
73 influenced by several command line options, certain phases can be
74 skipped. The list of phases (in the execution order) and the
75 corresponding options follows.
76
77 ## Configuration reading phase
78
79 After starting, novaboot reads configuration files. Their content is
80 described in section ["CONFIGURATION FILE"](#configuration-file). By default,
81 configuration is read from multiple locations. First from the system
82 configuration directory (`/etc/novaboot.d/`), second from the user
83 configuration file (`~/.config/novaboot`) and third from `.novaboot`
84 files along the path to the current directory. Alternatively, a single
85 configuration file specified with the **-c** switch or with the
86 `NOVABOOT_CONFIG` environment variable is read. The latter read files
87 override settings from the former ones.
88
89 The system configuration directory is determined by the content of
90 NOVABOOT\_CONFIG\_DIR environment variable and defaults to
91 `/etc/novaboot.d`. Files in this directory with names consisting
92 solely of English letters, numbers, dashes '-' and underscores '\_'
93 (note that dot '.' is not included) are read in alphabetical order.
94
95 Then, the user configuration file is read from
96 `$XDG_CONFIG_HOME/novaboot`. If `$XDG_CONFIG_HOME` environemnt
97 variable is not set `~/.config/novaboot` is read instead.
98
99 Finally, novaboot searches for files named `.novaboot` starting from the
100 directory of the novaboot script (or working directory, see bellow)
101 and continuing upwards up to the root directory. The found
102 configuration files are then read in the opposite order (i.e. from the
103 root directory downwards). This allows to have, for example, a project
104 specific configuration in `~/project/.novaboot`.
105
106 Note the difference between `~/.config/novaboot` and `~/.novaboot`.
107 The former one is read always, whereas the latter only when novaboot
108 script or working directory is under the `$HOME` directory.
109
110 In certain cases, the location of the novaboot script cannot be
111 determined in this early phase. This happens either when the script is
112 read from the standard input or when novaboot is invoked explicitly as
113 in the example ["4."](#4) above. In this case the current working
114 directory is used as a starting point for configuration file search
115 instead of the novaboot script directory.
116
117 - -c, --config=_filename_
118
119     Use the specified configuration file instead of the default one(s).
120
121 ## Command line processing phase
122
123 - --dump-config
124
125     Dump the current configuration to stdout end exit. Useful as an
126     initial template for a configuration file.
127
128 - -h, --help
129
130     Print short (**-h**) or long (**--help**) help.
131
132 - -t, --target=_target_
133
134     This option serves as a user configurable shortcut for other novaboot
135     options. The effect of this option is the same as the options stored
136     in the `%targets` configuration variable under key _target_. See
137     also ["CONFIGURATION FILE"](#configuration-file).
138
139 ## Script preprocessing phase
140
141 This phases allows to modify the parsed novaboot script before it is
142 used in the later phases.
143
144 - -a, --append=_parameters_
145
146     Append a string to the first `load` line in the novaboot script. This
147     can be used to append parameters to the kernel's or root task's
148     command line. This option can appear multiple times.
149
150 - -b, --bender
151
152     Use `bender` chainloader. Bender scans the PCI bus for PCI serial
153     ports and stores the information about them in the BIOS data area for
154     use by the kernel.
155
156 - --chainloader=_chainloader_
157
158     Specifies a chainloader that is loaded before the kernel and other
159     files specified in the novaboot script. E.g. 'bin/boot/bender
160     promisc'.
161
162 - --dump
163
164     Print the modules to boot and their parameters after this phase
165     finishes. Then exit. This is useful for seeing the effect of other
166     options in this section.
167
168 - -k, --kernel=`file`
169
170     Replace the first word on the first `load` line in the novaboot
171     script with `file`.
172
173 - --scriptmod=_perl expression_
174
175     When novaboot script is read, _perl expression_ is executed for every
176     line (in $\_ variable). For example, `novaboot
177     \--scriptmod=s/sigma0/omega6/g` replaces every occurrence of _sigma0_
178     in the script with _omega6_.
179
180     When this option is present, it overrides _$script\_modifier_ variable
181     from the configuration file, which has the same effect. If this option
182     is given multiple times all expressions are evaluated in the command
183     line order.
184
185 ## File generation phase
186
187 In this phase, files needed for booting are generated in a so called
188 _build directory_ (see ["--build-dir"](#build-dir)). In most cases configuration
189 for a bootloader is generated automatically by novaboot. It is also
190 possible to generate other files using _heredoc_ or _"<"_ syntax in
191 novaboot scripts. Finally, binaries can be generated in this phases by
192 running `scons` or `make`.
193
194 - --build-dir=_directory_
195
196     Overrides the default build directory location.
197
198     The default build directory location is determined as follows: If the
199     configuration file defines the `$builddir` variable, its value is
200     used. Otherwise, it is the directory that contains the first processed
201     novaboot script.
202
203     See also ["BUILDDIR"](#builddir) variable.
204
205 - -g, --grub\[=_filename_\]
206
207     Generates grub bootloader menu file. If the _filename_ is not
208     specified, `menu.lst` is used. The _filename_ is relative to the
209     build directory (see **--build-dir**).
210
211 - --grub-preamble=_prefix_
212
213     Specifies the _preable_ that is at the beginning of the generated
214     GRUB or GRUB2 config files. This is useful for specifying GRUB's
215     timeout.
216
217 - --prefix=_prefix_
218
219     Specifies _prefix_ (e.g. `/srv/tftp`) that is put in front of every
220     file name in generated bootloader configuration files (or in U-Boot
221     commands).
222
223     If the _prefix_ contains string $NAME, it will be replaced with the
224     name of the novaboot script (see also **--name**).
225
226     If the _prefix_ contains string $BUILDDIR, it will be replaced with
227     the build directory (see also **--build-dir**).
228
229 - --grub-prefix
230
231     Alias for **--prefix**.
232
233 - --grub2\[=_filename_\]
234
235     Generate GRUB2 menu entry in _filename_. If _filename_ is not
236     specified `grub.cfg` is used. The content of the menu entry can be
237     customized with **--grub-preamble**, **--grub2-prolog** or
238     **--grub\_prefix** options.
239
240     In order to use the the generated menu entry on your development
241     machine that uses GRUB2, append the following snippet to
242     `/etc/grub.d/40_custom` file and regenerate your grub configuration,
243     i.e. run update-grub on Debian/Ubuntu.
244
245         if [ -f /path/to/nul/build/grub.cfg ]; then
246           source /path/to/nul/build/grub.cfg
247         fi
248
249 - --grub2-prolog=_prolog_
250
251     Specifies text that is put at the beginning of the GRUB2 menu entry.
252
253 - -m, --make\[=make command\]
254
255     Runs `make` to build files that are not generated by novaboot itself.
256
257 - --name=_string_
258
259     Use the name _string_ instead of the name of the novaboot script.
260     This name is used for things like a title of grub menu or for the
261     server directory where the boot files are copied to.
262
263 - --no-file-gen
264
265     Do not run external commands to generate files (i.e. "<" syntax and
266     `run` keyword). This switch does not influence generation of files
267     specified with "<<WORD" syntax.
268
269 - -p, --pulsar\[=mac\]
270
271     Generates pulsar bootloader configuration file named `config-_mac_`
272     The _mac_ string is typically a MAC address and defaults to
273     _novaboot_.
274
275 - --scons\[=scons command\]
276
277     Runs `scons` to build files that are not generated by novaboot
278     itself.
279
280 - --strip-rom
281
282     Strip _rom://_ prefix from command lines and generated config files.
283     The _rom://_ prefix is used by NUL. For NRE, it has to be stripped.
284
285 - --gen-only
286
287     Exit novaboot after file generation phase.
288
289 ## Target connection check
290
291 If supported by the target, the connection to it is made and it is
292 checked whether the target is not occupied by another novaboot
293 user/instance.
294
295 - --amt=_"\[user\[:password\]@\]host\[:port\]_
296
297     Use Intel AMT technology to control the target machine. WS management
298     is used to powercycle it and Serial-Over-Lan (SOL) for input/output.
299     The hostname or (IP address) is given by the _host_ parameter. If
300     _password_ is not specified, environment variable AMT\_PASSWORD is
301     used. The _port_ specifies a TCP port for SOL. If not specified, the
302     default is 16992. Default _user_ is admin.
303
304 - --iprelay=_addr\[:port\]_
305
306     Use TCP/IP relay and serial port to access the target's serial port
307     and powercycle it. The IP address of the relay is given by _addr_
308     parameter. If _port_ is not specified, it default to 23.
309
310     Note: This option is supposed to work with HWG-ER02a IP relays.
311
312 - -s, --serial\[=device\]
313
314     Target's serial line is connected to host's serial line (device). The
315     default value for device is `/dev/ttyUSB0`.
316
317     The value of this option is exported in NB\_NOVABOOT environment
318     variable to all subprocesses run by `novaboot`.
319
320 - --stty=_settings_
321
322     Specifies settings passed to `stty` invoked on the serial line
323     specified with **--serial** option. If this option is not given,
324     `stty` is called with `raw -crtscts -onlcr 115200` settings.
325
326 - --remote-cmd=_cmd_
327
328     Command that mediates connection to the target's serial line. For
329     example `ssh server 'cu -l /dev/ttyS0'`.
330
331 - --remote-expect=_string_
332
333     Wait for reception of _string_ after establishing the the remote
334     connection before continuing.
335
336 ## File deployment phase
337
338 In some setups, it is necessary to copy the files needed for booting
339 to a particular location, e.g. to a TFTP boot server or to the
340 `/boot` partition.
341
342 - -d, --dhcp-tftp
343
344     Turns your workstation into a DHCP and TFTP server so that the OS can
345     be booted via PXE BIOS (or similar mechanism) on the test machine
346     directly connected by a plain Ethernet cable to your workstation.
347
348     The DHCP and TFTP servers requires root privileges and `novaboot`
349     uses `sudo` command to obtain those. You can put the following to
350     _/etc/sudoers_ to allow running the necessary commands without asking
351     for password.
352
353         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 --listen --secure -v -v -v --pidfile tftpd.pid *, /usr/bin/touch dhcpd.leases, /usr/bin/pkill --pidfile=dhcpd.pid, /usr/bin/pkill --pidfile=tftpd.pid
354         your_login ALL=NOPASSWD: NOVABOOT
355
356 - --tftp
357
358     Starts a TFTP server on your workstation. This is similar to
359     **--dhcp-tftp** except that DHCP server is not started.
360
361     The TFTP server require root privileges and `novaboot` uses `sudo`
362     command to obtain those. You can put the following to _/etc/sudoers_
363     to allow running the necessary commands without asking for password.
364
365         Cmnd_Alias NOVABOOT =  /usr/sbin/in.tftpd --listen --secure -v -v -v --pidfile tftpd.pid *, /usr/bin/pkill --pidfile=tftpd.pid
366         your_login ALL=NOPASSWD: NOVABOOT
367
368 - --tftp-port=_port_
369
370     Port to run the TFTP server on. Implies **--tftp**.
371
372 - --iso\[=filename\]
373
374     Generates the ISO image that boots NOVA system via GRUB. If no filename
375     is given, the image is stored under _NAME_.iso, where _NAME_ is the name
376     of the novaboot script (see also **--name**).
377
378 - --server\[=\[\[user@\]server:\]path\]
379
380     Copy all files needed for booting to another location. The files will
381     be copied (by **rsync** tool) to the directory _path_. If the _path_
382     contains string $NAME, it will be replaced with the name of the
383     novaboot script (see also **--name**).
384
385 - --rsync-flags=_flags_
386
387     Specifies which _flags_ are appended to `rsync` command line when
388     copying files as a result of _--server_ option.
389
390 - --concat
391
392     If **--server** is used and its value ends with $NAME, then after
393     copying the files, a new bootloader configuration file (e.g. menu.lst)
394     is created at _path-wo-name_, i.e. the path specified by **--server**
395     with $NAME part removed. The content of the file is created by
396     concatenating all files of the same name from all subdirectories of
397     _path-wo-name_ found on the "server".
398
399 - --ider
400
401     Use Intel AMT technology for IDE redirection. This allows the target
402     machine to boot from novaboot created ISO image. Implies **--iso**.
403
404     The experimental `amtider` utility needed by this option can be
405     obtained from https://github.com/wentasah/amtterm.
406
407 ## Target power-on and reset phase
408
409 At this point, the target is reset (or switched on/off). There is
410 several ways how this can be accomplished. Resetting a physical target
411 can currently be accomplished by the following options: **--amt**,
412 **--iprelay**, **--reset-cmd**.
413
414 - --on, --off
415
416     Switch on/off the target machine and exit. The script (if any) is
417     completely ignored. Currently it works only with **--iprelay** or
418     **--amt**.
419
420 - -Q, --qemu\[=_qemu-binary_\]
421
422     Boot the configuration in qemu. Optionally, the name of qemu binary
423     can be specified as a parameter.
424
425 - --qemu-append=_flags_
426
427     Append _flags_ to the default qemu flags (QEMU\_FLAGS variable or
428     `-cpu coreduo -smp 2`).
429
430 - -q, --qemu-flags=_flags_
431
432     Replace the default qemu flags (QEMU\_FLAGS variable or `-cpu coreduo
433     \-smp 2`) with _flags_ specified here.
434
435 - --reset-cmd=_cmd_
436
437     Command that resets the target.
438
439 - --no-reset, --reset
440
441     Disable/enable resetting of the target.
442
443 ## Interaction with the bootloader on the target
444
445 - --uboot\[=_prompt_\]
446
447     Interact with U-Boot bootloader to boot the thing described in the
448     novaboot script. _prompt_ specifies the U-Boot's prompt (default is
449     "=> ", other common prompts are "U-Boot> " or "U-Boot# ").
450     Implementation of this option is currently tied to a particular board
451     that we use. It may be subject to changes in the future!
452
453 - --uboot-init
454
455     Command(s) to send the U-Boot bootloader before loading the images and
456     booting them. This option can be given multiple times. After sending
457     commands from each option novaboot waits for U-Boot _prompt_.
458
459     If the command contains string _$NB\_MYIP_ then this string is
460     replaced by IPv4 address of eth0 interface. Similarly _$NB\_PREFIX_ is
461     replaced with prefix given by **--prefix**.
462
463     See also `uboot` keyword in ["NOVABOOT SCRIPT SYNTAX"](#novaboot-script-syntax)).
464
465 - --uboot-addr _name_=_address_
466
467     Load address of U-Boot's `tftpboot` command for loading _name_,
468     where name is one of _kernel_, _ramdisk_ or _fdt_ (flattened device
469     tree).
470
471     The default addresses are ${_name_\_addr\_r}, i.e. U-Boot environment
472     variables used by convention for this purpose.
473
474 - --uboot-cmd=_command_
475
476     Specifies U-Boot command used to execute the OS. If the command
477     contains strings `$kernel_addr`, `$ramdisk_addr`, `$fdt_addr`,
478     these are replaced with the addresses configured with **--uboot-addr**.
479
480     The default value is
481
482         bootm $kernel_addr $ramdisk_addr $fdt_addr
483
484     or the `UBOOT_CMD` variable if defined in the novaboot script.
485
486 ## Target interaction phase
487
488 In this phase, target's serial output is redirected to stdout and if
489 stdin is a TTY, it is redirected to the target's serial input allowing
490 interactive work with the target.
491
492 - --exiton=_string_
493
494     When _string_ is sent by the target, novaboot exits. This option can
495     be specified multiple times, in which case novaboot exits whenever
496     either of the specified strings is sent.
497
498     If _string_ is `-re`, then the next **--exiton**'s _string_ is
499     treated as regular expression. For example:
500
501         --exiton -re --exiton 'error:.*failed'
502
503 - --exiton-re=_regex_
504
505     The same as --exiton -re --exiton _regex_.
506
507 - --exiton-timeout=_seconds_
508
509     By default **--exiton** waits for the string match forever. When this
510     option is specified, "exiton" timeouts after the specifies number of
511     seconds and novaboot returns non-zero exit code.
512
513 - -i, --interactive
514
515     Setup things for interactive use of target. Your terminal will be
516     switched to raw mode. In raw mode, your system does not process input
517     in any way (no echoing of entered characters, no interpretation
518     special characters). This, among others, means that Ctrl-C is passed
519     to the target and does no longer interrupt novaboot. Use "~~."
520     sequence to exit novaboot.
521
522 - --expect=_string_
523
524     When _string_ is received from the target, send the string specified
525     with the subsequent **--send\*** option to the target.
526
527 - --expect-re=_regex_
528
529     When target's output matches regular expression _regex_, send the
530     string specified with the subsequent **--send\*** option to the target.
531
532 - --expect-raw=_perl-code_
533
534     Provides direct control over Perl's Expect module.
535
536 - --send=_string_
537
538     Send _string_ to the target after the previously specified
539     **--expect\*** was matched in the target's output. The _string_ may
540     contain escape sequences such as "\\n".
541
542     Note that _string_ is actually interpreted by Perl, so it can contain
543     much more that escape sequences. This behavior may change in the
544     future.
545
546     Example: `--expect='login: ' --send='root\n'`
547
548 - --sendcont=_string_
549
550     Similar to **--send** but continue expecting more input.
551
552     Example: `--expect='Continue?' --sendcont='yes\n'`
553
554 # NOVABOOT SCRIPT SYNTAX
555
556 The syntax tries to mimic POSIX shell syntax. The syntax is defined
557 with the following rules.
558
559 Lines starting with "#" and empty lines are ignored.
560
561 Lines that end with "\\" are concatenated with the following line after
562 removal of the final "\\" and leading whitespace of the following line.
563
564 Lines of the form _VARIABLE=..._ (i.e. matching '^\[A-Z\_\]+=' regular
565 expression) assign values to internal variables. See ["VARIABLES"](#variables)
566 section.
567
568 Lines starting with `load` keyword represent modules to boot. The
569 word after `load` is a file name (relative to the build directory
570 (see **--build-dir**) of the module to load and the remaining words are
571 passed to it as the command line parameters.
572
573 When the `load` line ends with "<<WORD" then the subsequent lines
574 until the line containing solely WORD are copied literally to the file
575 named on that line. This is similar to shell's heredoc feature.
576
577 When the `load` line ends with "< CMD" then command CMD is executed
578 with `/bin/sh` and its standard output is stored in the file named on
579 that line. The SRCDIR variable in CMD's environment is set to the
580 absolute path of the directory containing the interpreted novaboot
581 script.
582
583 Lines starting with `run` keyword contain shell commands that are run
584 during file generation phase. This is the same as the "< CMD" syntax
585 for `load` keyboard except that the command's output is not
586 redirected to a file. The ordering of commands is the same as they
587 appear in the novaboot script.
588
589 Lines starting with `uboot` represent U-Boot commands that are sent
590 to the target if **--uboot** option is given. Having a U-Boot line in
591 the novaboot script is the same as passing an equivalent
592 **--uboot-init** option to novaboot. The `uboot` keyword can be
593 suffixed with timeout specification. The syntax is `uboot:Ns`, where
594 `N` is the whole number of seconds. If the U-Boot command prompt does
595 not appear before the timeout, novaboot fails. The default timeout is
596 10 seconds.
597
598 Example (Linux):
599
600     #!/usr/bin/env novaboot
601     load bzImage console=ttyS0,115200
602     run  make -C buildroot
603     load rootfs.cpio < gen_cpio buildroot/images/rootfs.cpio "myapp->/etc/init.d/S99myapp"
604
605 Example (NOVA User Land - NUL):
606
607     #!/usr/bin/env novaboot
608     WVDESC=Example program
609     load bin/apps/sigma0.nul S0_DEFAULT script_start:1,1 \
610                              verbose hostkeyb:0,0x60,1,12,2
611     load bin/apps/hello.nul
612     load hello.nulconfig <<EOF
613     sigma0::mem:16 name::/s0/log name::/s0/timer name::/s0/fs/rom ||
614     rom://bin/apps/hello.nul
615     EOF
616
617 This example will load three modules: `sigma0.nul`, `hello.nul` and
618 `hello.nulconfig`. sigma0 receives some command line parameters and
619 `hello.nulconfig` file is generated on the fly from the lines between
620 `<<EOF` and `EOF`.
621
622 ## VARIABLES
623
624 The following variables are interpreted in the novaboot script:
625
626 - BUILDDIR
627
628     Novaboot chdir()s to this directory before file generation phase. The
629     directory name specified here is relative to the build directory
630     specified by other means (see ["--build-dir"](#build-dir)).
631
632 - EXITON
633
634     Assigning this variable has the same effect as specifying ["--exiton"](#exiton)
635     option.
636
637 - HYPERVISOR\_PARAMS
638
639     Parameters passed to hypervisor. The default value is "serial", unless
640     overridden in configuration file.
641
642 - KERNEL
643
644     The kernel to use instead of the hypervisor specified in the
645     configuration file with the `$hypervisor` variable. The value should
646     contain the name of the kernel image as well as its command line
647     parameters. If this variable is defined and non-empty, the variable
648     HYPERVISOR\_PARAMS is not used.
649
650 - NO\_BOOT
651
652     If this variable is 1, the system is not booted. This is currently
653     only implemented for U-Boot bootloader where it is useful for
654     interacting with the bootloader without booting the system - e.g. for
655     flashing.
656
657 - QEMU
658
659     Use a specific qemu binary (can be overridden with **-Q**) and flags
660     when booting this script under qemu. If QEMU\_FLAGS variable is also
661     specified flags specified in QEMU variable are replaced by those in
662     QEMU\_FLAGS.
663
664 - QEMU\_FLAGS
665
666     Use specific qemu flags (can be overridden with **-q**).
667
668 - UBOOT\_CMD
669
670     See ["--uboot-cmd"](#uboot-cmd).
671
672 - WVDESC
673
674     Description of the WvTest-compliant program.
675
676 - WVTEST\_TIMEOUT
677
678     The timeout in seconds for WvTest harness. If no complete line appears
679     in the test output within the time specified here, the test fails. It
680     is necessary to specify this for long running tests that produce no
681     intermediate output.
682
683 # CONFIGURATION FILE
684
685 Novaboot can read its configuration from one or more files. By
686 default, novaboot looks for files in `/etc/novaboot.d`, file
687 `~/.config/novaboot` and files named `.novaboot` as described in
688 ["Configuration reading phase"](#configuration-reading-phase). Alternatively, configuration file
689 location can be specified with the **-c** switch or with the
690 NOVABOOT\_CONFIG environment variable. The configuration file has Perl
691 syntax (i.e. it is better to put `1;` as the last line) and should set
692 values of certain Perl variables. The current configuration can be
693 dumped with the **--dump-config** switch. Some configuration variables
694 can be overridden by environment variables (see below) or by command
695 line switches.
696
697 Supported configuration variables include:
698
699 - $builddir
700
701     Build directory location relative to the location of the configuration
702     file.
703
704 - $default\_target
705
706     Default target (see below) to use when no target is explicitly
707     specified on command line with the **--target** option.
708
709 - %targets
710
711     Hash of target definitions to be used with the **--target** option. The
712     key is the identifier of the target, the value is the string with
713     command line options. For instance, if the configuration file contains:
714
715         $targets{'mybox'} = '--server=boot:/tftproot --serial=/dev/ttyUSB0 --grub',
716
717     then the following two commands are equivalent:
718
719         ./myos --server=boot:/tftproot --serial=/dev/ttyUSB0 --grub
720         ./myos -t mybox
721
722 # ENVIRONMENT VARIABLES
723
724 Some options can be specified not only via config file or command line
725 but also through environment variables. Environment variables override
726 the values from configuration file and command line parameters
727 override the environment variables.
728
729 - NOVABOOT\_CONFIG
730
731     Name of the novaboot configuration file to use instead of the default
732     one(s).
733
734 - NOVABOOT\_CONFIG\_DIR
735
736     Name of the novaboot configuration directory. When not specified
737     `/etc/novaboot.d` is used.
738
739 - NOVABOOT\_BENDER
740
741     Defining this variable has the same meaning as **--bender** option.
742
743 # AUTHORS
744
745 Michal Sojka <sojka@os.inf.tu-dresden.de>