You've already forked documentation
mirror of
https://github.com/Dasharo/documentation.git
synced 2026-03-06 15:26:51 -08:00
15 lines
363 B
Plaintext
Executable File
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";
|
|
|
|
}
|
|
} |