blob: 76e240dd5f3730ebae087e5fc9e2e8b7402eaf29 (
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
|
##############################################################################################################
# GLOBAL DOCUMENT
# <any REPOSITORY option>: global setting
# repositories: array of objects with documents to fetchd
#
# REPOSITORY ENTRY:
# -
# url_fetch : gitweb fetch URL (format string with token %repo% %commit% %source%, defined in configuration)
# url_edit : gitweb edut URL (format string with token %repo% %commit% %source%, defined in configuration)
# git_name: repository name (%repo%)
# git_commit: git reference: revision, SHA1, branch... (%commit%)
# src_prefix: prefix prepended to %source%
# dst_prefix: prefix prepended to destination name
# documents: array of documents to fetch
#
# DOCUMENT ENTRY:
# source: subpath within repository (%source%)
# destination: local destination filename
# label|title: name within TOC
# edit|editURI: specific edition URI
#
# EXAMPLE:
# ------------------------------------
# url: "GERRIT_FETCH"
# git_commit: "master"
# repositories:
# -
# git_name: src/foo
# src_prefix: docs
# dst_prefix: foodocs
# documents:
# - source: intro.md
# label: Introduction
# - source: topic/README.md
# destination: topic.md
# label: My Topic
# ------------------------------------
##############################################################################################################
url_fetch : "GERRIT_FETCH"
git_commit: master
repositories:
-
git_name: AGL/meta-agl
documents:
- source: README-AGL.md
destination: AGL.md
label: AGL Overview
- source: README.md
destination: meta-agl.md
label: meta-agl
-
git_name: AGL/meta-agl-demo
documents:
- source: README.md
destination: meta-agl-demo.md
label: meta-agl-demo
-
git_name: AGL/meta-agl-devel
documents:
- source: README.md
destination: meta-agl-devel.md
label: meta-agl-devel
-
git_name: AGL/meta-agl-extra
documents:
- source: meta-sota/README.md
destination: meta-sota.md
label: meta-sota
-
url_fetch: http://iot.bzh/download/public/2016/%source%
dst_prefix: iotbzh2016
documents:
- source: sdk/AGL-Kickstart-on-Renesas-Porter-board.pdf
- source: sdk/AGL-Devkit-Image-and-SDK-for-porter.pdf
- source: sdk/AGL-Devkit-Build-your-1st-AGL-Application.pdf
- source: bsp/AGL_Phase2-Devkit-HowTo_bake_a_service.pdf
- source: appfw/03-AGL-AppFW-Privileges-Management.pdf
|