mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-04 14:36:55 +00:00
Adjusted the picture sizes a bit smaller, fixed some spelling errors, and moved the boot-flow.dot image used by trusty into the common images folder (and renamed the image to trusty-boot-flow.dot) Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
11 lines
312 B
Plaintext
11 lines
312 B
Plaintext
digraph G {
|
|
rankdir=LR;
|
|
rank=same;
|
|
bgcolor="transparent";
|
|
uosl1 [label="UOS_Loader"]
|
|
acrn_init [shape=box style="rounded,filled" label="ACRN"]
|
|
acrn_switch [shape=box style="rounded,filled" label="ACRN"]
|
|
uosl2 [label="UOS_Loader"]
|
|
uosl1 -> acrn_init -> "Trusty" -> acrn_switch -> uosl2;
|
|
}
|