blob: 6acd117bb281117161fdf9df42946d343099c6f6 (
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
|
# REFERENCE ENTRY:
# -
# url_fetch : gitweb fetch URL (format string with token %repo% %uri%
# GERRIT_FETCH= "https://gerrit.automotivelinux.org/gerrit/gitweb?p=%repo%;a=blob_plain;f=%source%;hb=%commit%"
# GITHUB_FETCH= "https://raw.githubusercontent.com/%repo%/%commit%/%source%"
# repository: git repository name
# GITHUB_EDIT= "https://raw.github.com/%repo%/blob/%commit%/%source%"
# git_commit: git commit when not default
# destination_prefix: optional destination prefix
# documents:
# -
# source : "source patch within url_fetch"
# destination : "optional: destination path default=path.join(destination_prefix+source)"
# label: "optional: friendly name for submenu default=basename(source) overloaded by file content"
# title: "optional: info about document (default label, overloaded by file content)"
#
url_fetch : "GERRIT_FETCH"
git_commit : "master"
#dst_prefix : # destination_path = destination_prefix + (document.destination || document.source)
repositories:
-
git_name: AGL/meta-renesas
dst_prefix: renesas
documents:
- source: meta-rcar-gen2/README
destination: gen2.md
label: meta-rcar-gen2 layer
- source: meta-rcar-gen2/README.proprietary
destination: proprietary.md
label: Proprietary drivers
- source: meta-rcar-gen2/README-usbgadget.md
destination: usb-gadget.md
label: USB Gadget on Porter board
|