Files
documentation/source/images/boot_flow.dot
2018-09-13 16:20:25 -07:00

15 lines
363 B
Plaintext
Executable File

digraph bootflow {
bgcolor="transparent";
rankdir=LR;
compound=true;
node [fontsize=10, shape=record, style=rounded];
edge [fontsize=10];
subgraph cluster_stages {
label="Boot Stages"; fontsize=11;
style="filled,rounded"; color="#F0F0F0";
"Stage 1A" -> "Stage 1B" -> "Stage 2" -> "Payload";
}
}