diff options
author | Minijackson <minijackson@riseup.net> | 2020-10-13 14:46:56 +0200 |
---|---|---|
committer | Minijackson <minijackson@riseup.net> | 2020-10-13 14:46:56 +0200 |
commit | 65149417e1deb23f83726edfd41f3215ae0591e0 (patch) | |
tree | 90c6bcb4ad6dd9c597d04b51845e02d63c450237 /res/plantuml/buildroot-process.plantuml | |
parent | c9e775a44cb316d578827f333531f5101aa29658 (diff) | |
download | wtf-is-linux-slides-65149417e1deb23f83726edfd41f3215ae0591e0.tar.gz wtf-is-linux-slides-65149417e1deb23f83726edfd41f3215ae0591e0.zip |
Diffstat (limited to 'res/plantuml/buildroot-process.plantuml')
-rw-r--r-- | res/plantuml/buildroot-process.plantuml | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/res/plantuml/buildroot-process.plantuml b/res/plantuml/buildroot-process.plantuml new file mode 100644 index 0000000..8fea3fe --- /dev/null +++ b/res/plantuml/buildroot-process.plantuml | |||
@@ -0,0 +1,41 @@ | |||
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 | package "External projects" #C6F68D { | ||
15 | [...] as project1 | ||
16 | [...] as project2 | ||
17 | [...] as project3 | ||
18 | } | ||
19 | |||
20 | package "Buildroot" #B794F6 { | ||
21 | [build build tools\n(host)] as host_build | ||
22 | [build wanted projects\n(target)] as target_build | ||
23 | [post-build script] as post_build | ||
24 | [assemble the installation directory] as assemble | ||
25 | } | ||
26 | |||
27 | package "Outputs" { | ||
28 | [Flashable image] as image #F186C0 | ||
29 | [Other outputs...] as other_outputs #F186C0 | ||
30 | } | ||
31 | |||
32 | project1 --> host_build | ||
33 | project3 --> target_build | ||
34 | |||
35 | host_build -left-> target_build | ||
36 | target_build --> post_build | ||
37 | post_build -right-> assemble | ||
38 | assemble --> image | ||
39 | assemble --> other_outputs | ||
40 | |||
41 | @enduml | ||