The boot script describes how the Erlang runtime system is started. It contains instructions on which code to load and which processes and applications to start.
The command
The
The boot script is stored in a file with the extension
The file has the following syntax:
{script, {Name, Vsn},
[
{progress, loading},
{preLoaded, [Mod1, Mod2, ...]},
{path, [Dir1,"$ROOT/Dir",...]}.
{primLoad, [Mod1, Mod2, ...]},
...
{kernel_load_completed},
{progress, loaded},
{kernelProcess, Name, {Mod, Func, Args}},
...
{apply, {Mod, Func, Args}},
...
{progress, started}]}.
In the
systools(3)