summaryrefslogtreecommitdiffstats
path: root/res/plantuml/buildroot-process.plantuml
diff options
context:
space:
mode:
authorMinijackson <minijackson@riseup.net>2020-10-13 14:46:56 +0200
committerMinijackson <minijackson@riseup.net>2020-10-13 14:46:56 +0200
commit65149417e1deb23f83726edfd41f3215ae0591e0 (patch)
tree90c6bcb4ad6dd9c597d04b51845e02d63c450237 /res/plantuml/buildroot-process.plantuml
parentc9e775a44cb316d578827f333531f5101aa29658 (diff)
downloadwtf-is-linux-slides-65149417e1deb23f83726edfd41f3215ae0591e0.tar.gz
wtf-is-linux-slides-65149417e1deb23f83726edfd41f3215ae0591e0.zip
add 2020-09-29 and 2020-10-{06,13} slidesHEADmaster
Diffstat (limited to 'res/plantuml/buildroot-process.plantuml')
-rw-r--r--res/plantuml/buildroot-process.plantuml41
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
3left to right direction
4
5skinparam backgroundcolor transparent
6skinparam component {
7 borderColor black
8 arrowColor #FA8100
9}
10skinparam package {
11 backgroundcolor white
12}
13
14package "External projects" #C6F68D {
15 [...] as project1
16 [...] as project2
17 [...] as project3
18}
19
20package "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
27package "Outputs" {
28 [Flashable image] as image #F186C0
29 [Other outputs...] as other_outputs #F186C0
30}
31
32project1 --> host_build
33project3 --> target_build
34
35host_build -left-> target_build
36target_build --> post_build
37post_build -right-> assemble
38assemble --> image
39assemble --> other_outputs
40
41@enduml