23 lines · plain
1digraph G {2 part_main [label="Main partition",shape=plaintext];3 part1 [label="Loadable partition 1",shape=plaintext];4 part2 [label="Loadable partition 2",shape=plaintext];5 main [style=filled,fillcolor=lightblue];6 f1 [style=filled,fillcolor=lightsalmon];7 f2 [style=filled,fillcolor=palegreen];8 f3 [style=filled,fillcolor=lightblue];9 f4 [style=filled,fillcolor=lightsalmon];10 f5 [style=filled,fillcolor=lightblue];11 f6 [style=filled,fillcolor=palegreen];12 part_main -> main;13 main -> f3;14 part1 -> f1;15 f1 -> f3;16 f1 -> f4;17 f1 -> f5;18 part2 -> f2;19 f2 -> f3;20 f2 -> f5;21 f2 -> f6;22}23