summaryrefslogtreecommitdiffstats
path: root/res/plantuml/buildroot-project.plantuml
blob: e2e48cf0ca4813852c989e57468d4d282ebc6c1a (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
35
36
37
38
39
40
41
@startuml

left to right direction

skinparam backgroundcolor transparent
skinparam component {
	borderColor black
	arrowColor #FA8100
}
skinparam package {
	backgroundcolor white
}

package "External projects" #C6F68D {
	[...] as project1
	[...] as project2
	[...] as project3
}

package "Buildroot" #B794F6 {
	[download]
	[check integrity] as checksum
	[build]
	[install]
}

package "Outputs" {
	[Flashable image] as image #F186C0
	[Other outputs...] as other_outputs #F186C0
}

project1 --> download

download -left-> checksum
checksum --> build
build -right-> install

install --> image
install --> other_outputs

@enduml