diff options
Diffstat (limited to 'res/plantuml/buildroot-overview.plantuml')
-rw-r--r-- | res/plantuml/buildroot-overview.plantuml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/res/plantuml/buildroot-overview.plantuml b/res/plantuml/buildroot-overview.plantuml new file mode 100644 index 0000000..1b1277d --- /dev/null +++ b/res/plantuml/buildroot-overview.plantuml | |||
@@ -0,0 +1,34 @@ | |||
1 | @startuml | ||
2 | |||
3 | left to right direction | ||
4 | |||
5 | skinparam backgroundcolor transparent | ||
6 | skinparam component { | ||
7 | borderColor black | ||
8 | arrowColor #FA8100 | ||
9 | } | ||
10 | skinparam package { | ||
11 | backgroundcolor white | ||
12 | } | ||
13 | |||
14 | [Buildroot] #B794F6 | ||
15 | |||
16 | package "External projects" { | ||
17 | [coreutils\n(ls, cp, mkdir, ...)] as coreutils #C6F68D | ||
18 | [util-linux\n(mount, mkfs, ...)] as utillinux #C6F68D | ||
19 | [Other projects...] as other_projects #C6F68D | ||
20 | } | ||
21 | |||
22 | package "Outputs" { | ||
23 | [Flashable image] as image #F186C0 | ||
24 | [Other outputs...] as other_outputs #F186C0 | ||
25 | } | ||
26 | |||
27 | coreutils --> Buildroot | ||
28 | utillinux --> Buildroot | ||
29 | other_projects --> Buildroot | ||
30 | |||
31 | Buildroot --> image | ||
32 | Buildroot --> other_outputs | ||
33 | |||
34 | @enduml | ||