diff options
author | 2019-02-24 20:05:22 +0100 | |
---|---|---|
committer | 2019-02-24 20:05:22 +0100 | |
commit | c0fafcb577abb8108490540f7ecfe949a92c7fd0 (patch) | |
tree | fe2762927594f9af168cc596163fb4443606cfb4 /content/tocs/hardware | |
parent | b6b48a138a5100190f33a71a526f774b94514315 (diff) |
reset tocs
Signed-off-by: Clément Bénier <clement.benier@iot.bzh>
Diffstat (limited to 'content/tocs/hardware')
-rw-r--r-- | content/tocs/hardware/fetched_files.yml | 56 | ||||
-rw-r--r-- | content/tocs/hardware/toc_dev_en.yml | 45 |
2 files changed, 101 insertions, 0 deletions
diff --git a/content/tocs/hardware/fetched_files.yml b/content/tocs/hardware/fetched_files.yml new file mode 100644 index 0000000..f1decf7 --- /dev/null +++ b/content/tocs/hardware/fetched_files.yml @@ -0,0 +1,56 @@ +############################################################################################################## +# 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 +# ------------------------------------ +############################################################################################################## + +#dst_prefix: # destination_path = destination_prefix + (document.destination || document.source) + +url_fetch: "GERRIT_FETCH" +git_commit: "AGL_GERRIT_BRANCH" + +repositories: +- + git_name: AGL/meta-renesas-rcar-gen3 + dst_prefix: renesas-gen3 + documents: + - source: meta-rcar-gen3/README + destination: gen3.md + label: meta-rcar-gen3 layer + - source: meta-rcar-gen3/README.proprietary + destination: proprietary.md + label: Proprietary drivers + diff --git a/content/tocs/hardware/toc_dev_en.yml b/content/tocs/hardware/toc_dev_en.yml new file mode 100644 index 0000000..6c49ed8 --- /dev/null +++ b/content/tocs/hardware/toc_dev_en.yml @@ -0,0 +1,45 @@ +####################################################################### +# 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: Hardware Support +template: generated_index.html +children: +- + name: Renesas Gen3 Boards + children: + - url: reference/renesas-gen3/gen3.html + - url: reference/renesas-gen3/proprietary.html |