mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-04-30 04:33:58 +00:00
- Replace SOS or Service OS with Service VM - Replace UOS or User OS with User VM - Clean up some of the grammar Signed-off-by: Amy Reyes <amy.reyes@intel.com>
12 lines
349 B
Plaintext
12 lines
349 B
Plaintext
digraph G {
|
|
rankdir=LR;
|
|
rank=same;
|
|
bgcolor="transparent";
|
|
uservml1 [label="User VM OS\nBootloader"]
|
|
acrn_init [shape=box style="rounded,filled" label="ACRN"]
|
|
acrn_switch [shape=box style="rounded,filled" label="ACRN"]
|
|
uservml2 [label="User VM OS\nBootloader"]
|
|
uservml1 -> acrn_init -> "Trusty" -> acrn_switch -> uservml2;
|
|
}
|
|
|