acrn-hypervisor/tools/acrn-crashlog/acrnprobe/images/crash-config.dot
David B. Kinder 348422dba6 doc: fix graphviz scanning and processing
The doc build process copies files using script/extract-content.py from
outside of the doc/ folder (specifically content in the tools/ folders).
The script was not copying graphviz directive files.  This has been
fixed and the embedded graphviz directives are not (properly) stored in
separate image/*.dot files.

Note the extract-content.py file is derived from the Zephyr project.

Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
2018-08-30 14:05:50 -07:00

22 lines
640 B
Plaintext

digraph {
{
node [shape=plaintext];
"level 1" -> "level 2" -> "level 3";
}
node [shape=box;style="rounded,filled";color=AntiqueWhite;];
c1 [ label="crash A\nid 1\ncrash root" ];
c2 [ label="crash B\nid 2" ];
c3 [ label="crash C\nid 3\ncrash leaf" ];
c4 [ label="crash D\nid 4\ncrash leaf" ];
c5 [ label="crash E\nid 5\ncrash root\ncrash leaf" ];
{ rank = same; "level 1"; c1; c5;}
{ rank = same; "level 2"; c2; c4;}
{ rank = same; "level 3"; c3;}
node [shape=box;color="transparent";];
"None" -> {c1 c5} [ label="inherit 0" ];
c1 -> {c2 c4} [ label="inherit 1" ];
c2 -> c3 [ label="inherit 2" ];
}