blob: 1b1277d69b92c3a3e13f1da5975c6c176570e452 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
@startuml
left to right direction
skinparam backgroundcolor transparent
skinparam component {
borderColor black
arrowColor #FA8100
}
skinparam package {
backgroundcolor white
}
[Buildroot] #B794F6
package "External projects" {
[coreutils\n(ls, cp, mkdir, ...)] as coreutils #C6F68D
[util-linux\n(mount, mkfs, ...)] as utillinux #C6F68D
[Other projects...] as other_projects #C6F68D
}
package "Outputs" {
[Flashable image] as image #F186C0
[Other outputs...] as other_outputs #F186C0
}
coreutils --> Buildroot
utillinux --> Buildroot
other_projects --> Buildroot
Buildroot --> image
Buildroot --> other_outputs
@enduml
|