faea392eb6
Renames doc -> docs, should help get readthedocs integration working correctly. Also updates the developer quickstart guide. Change-Id: I179df0891957b56823ba72d0816a9a46e816b2ff
15 lines
234 B
Plaintext
15 lines
234 B
Plaintext
digraph sample_boot {
|
|
rankdir=LR;
|
|
|
|
node [shape = doublecircle];
|
|
CalcAction;
|
|
|
|
node [shape = circle];
|
|
|
|
CalcAction -> Alive;
|
|
Alive -> CreateVM;
|
|
CreateVM -> CheckBoot;
|
|
CheckBoot -> CheckBoot;
|
|
CheckBoot -> ConfigureVM;
|
|
}
|