blob: 0dae730a7ff5c503ea09fd78c295ee4c85da295a (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
#######################################################################
# WARNING:
# - TOC should reference .HTML and .md (Index OK but Error 404)
# - do not forget to run 'docbuild --tocs' after any changes
#
#
############################ SYNTAX ###################################
# GLOBAL OPTIONS:
# name: TOC (page) title
# template: name of template to use for this page - use 'generated_index.html' if unknown
# children: array of TOC entries
#
# TOC Entry:
# name: TOC entry (level 1)
# children:
# -
# name: optional name for TOC entry (default: use URL FrontMatter info)
# url: <subdir as defined with FETCH_DIR in conf/AppDefaults.js:
# -
# name: ...
# url: ...
# ...
#
# EXAMPLE:
# -------------------------------
# name: Developer Guides
# template: generated_index.html
# children:
# -
# name: Application Framework
# children:
# - url: reference/af-main/overview.html
# - url: reference/af-main/afm-system-daemon.html
# - url: reference/af-main/afm-user-daemon.html
# -------------------------------
#######################################################################
name: Architecture Guides
template: generated_index.html
children:
-
name: AGL Specifications
children:
-
name: Automotive Grade Linux Requirements Specifications
url: reference/AGL_Specifications/agl_spec_v1.0_final.pdf
-
name: Security Blueprint
children:
- url: reference/security/01-overview.html
- url: reference/security/02-adversaries.html
- url: reference/security/03-threat-analysis.htm
- url: reference/security/04-security-concepts.html
- url: reference/security/05-platform-security.html
- url: reference/security/06-application-security.html
- url: reference/security/07-system-hardening.html
-
name: Upgraded Security Blueprint 2017
children:
- url: reference/security/README.html
- name: Part-1 Hardware
children:
- url: reference/security/part-1/0_Abstract.html
- name: Part-2 Secure Boot
children:
- url: reference/security/part-2/0_Abstract.html
- url: reference/security/part-2/1-Image.html
- url: reference/security/part-2/2-Communication-modes.html
- url: reference/security/part-2/3-Consoles.html
- name: Part-3 Hypervisor
children:
- url: reference/security/part-3/0_Abstract.html
- name: Part-4 Kernel
children:
- url: reference/security/part-4/0_Abstract.html
- url: reference/security/part-4/1-General.html
- url: reference/security/part-4/2-Memory.html
- url: reference/security/part-4/3-Consoles.html
- url: reference/security/part-4/4-Debug.html
- url: reference/security/part-4/5-FileSystems.html
- name: Part-5 Platform
children:
- url: reference/security/part-5/0_Abstract.html
- url: reference/security/part-5/1-MAC.html
- url: reference/security/part-5/2-SystemD.html
- url: reference/security/part-5/3-SystemBus.html
- url: reference/security/part-5/4-Services.html
- url: reference/security/part-5/5-AppFw.html
- url: reference/security/part-5/6-Utilities.html
- url: reference/security/part-5/7-Users.html
- name: Part-6 Application
children:
- url: reference/security/part-6/0_Abstract.html
- url: reference/security/part-6/1-Installation.html
- url: reference/security/part-6/2-PrivilegeManagement.html
- url: reference/security/part-6/3-Signature.html
- url: reference/security/part-6/4-Services.html
- name: Part-7 Connectivity
children:
- url: reference/security/part-7/0_Abstract.html
- url: reference/security/part-7/1-BusAndConnectors.html
- url: reference/security/part-7/2-Wireless.html
- url: reference/security/part-7/3-Cloud.html
- name: Part-8 Update
children:
- url: reference/security/part-8/0_Abstract.html
- url: reference/security/part-8/1-FOTA.html
- url: reference/security/part-8/2-SOTA.html
- name: Part-9 Secure development
children:
- url: reference/security/part-9/0_Abstract.html
- name: Annexes
children:
- url: reference/security/annexes/0_Abstract.html
- url: reference/security/annexes/ConfigNotes.html
- url: reference/security/annexes/todoNotes.html
|