summaryrefslogtreecommitdiffstats
path: root/Replicant_contributors_meeting_27_28_July_2019_Paris_France/bootloaders/dot/init.dot
blob: b923c2f4b8d2957ebe6faef9f4ed47b24444efda (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
42
43
44
digraph {
	bgcolor="#ffffff00" # Transparent background
	ratio=0.8
	overlap=false
	subgraph cluster_1 {
		label="system/core/init/init.cpp";
		"early-init";
		"init";
		"late-init";
		"early-init" -> "init";
		"early-init" -> "wait_for_coldboot_done" [label="async"];
		"early-init" -> "MixHwrngIntoLinuxRng" [label="async"];
		"early-init" -> "SetMmapRndBits" [label="async"];
		"early-init" -> "SetKptrRestrict" [label="async"];
		"early-init" -> "keychord_init" [label="async"];
		"early-init" -> "console_init" [label="async"];
		"early-init" -> "StartBoringSslSelfTest" [label="async"];
		"early-init" -> "StartBoringSslSelfTest" [label="async"];
		"init" -> "charger" [label="(bootmode == charger)"];
		"init" -> "late-init" [label="(bootmode != charger)"];
		"init" -> "queue_property_triggers" [label="async"];
	};
	subgraph cluster_2 {
		label="system/core/rootdir/init.rc";
		subgraph cluster_2 {
			label="on late-init";
			"fs";
			"boot";
			"early-boot";
			"post-fs-data";
			"late-fs";

			"late-init" -> "fs";
			"fs" -> "post-fs";
			"post-fs" -> "late-fs";
			"late-fs" -> "post-fs-data";
			"post-fs-data" -> "zygote-start";
			"zygote-start" -> "load_persist_props_action";
			"load_persist_props_action" -> "firmware_mounts_complete";
			"firmware_mounts_complete" -> "early-boot";
			"early-boot" -> "boot";
		};
	};
}