aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMilo Casagrande <milo.casagrande@linaro.org>2014-11-26 11:29:54 +0100
committerMilo Casagrande <milo.casagrande@linaro.org>2014-11-26 11:29:54 +0100
commitd5a77cb20c584fc1cbfb11df5f9c43362ff6c796 (patch)
tree79bfd3e0a16f2daa429d004c0793cebdab3998ab /doc
parent6a7e3820c3ccd2d5b890ed0655c1d2e0bd67c45e (diff)
defconfig: Add support for file_server_url.
Change-Id: I906bd832efa57b548f76ffadc5db9fa5d78129e2
Diffstat (limited to 'doc')
-rw-r--r--doc/schema-defconfig.rst18
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/schema-defconfig.rst b/doc/schema-defconfig.rst
index 031d51a..af6c8ed 100644
--- a/doc/schema-defconfig.rst
+++ b/doc/schema-defconfig.rst
@@ -152,6 +152,14 @@ The following schema covers the data that is available with a GET request.
"type": "string",
"description": "The config fragment used"
},
+ "file_server_url": {
+ "type": "string",
+ "description": "The URL where boot log files, or other related files, are stored"
+ },
+ "file_server_resource": {
+ "type": "string",
+ "description": "The server path where the boot related files are stored"
+ },
"metadata": {
"type": "object",
"description": "A free form object that can contain different properties"
@@ -290,6 +298,14 @@ server.
"kconfig_fragments": {
"type": "string",
"description": "The config fragment used"
+ },
+ "file_server_url": {
+ "type": "string",
+ "description": "The URL where boot log files, or other related files, are stored"
+ },
+ "file_server_resource": {
+ "type": "string",
+ "description": "The server path where the boot related files are stored"
}
},
"required": ["version", "job", "kernel", "defconfig"]
@@ -300,6 +316,8 @@ Notes
* ``defconfig_full``: This field should be used to specify the full defconfig name if config fragments have been used. It should not contain the architecture (``arch``) value. If not defined, the ``defconfig`` value will be used. Its value should conform to: ``defconfig[+fragment[+fragment ... ]]``.
+* ``file_server_url``, ``file_server_resource``: These field should be used to provide the base URL and the actual path where boot related files (i.e. boot logs) are stored. ``file_server_url`` defines the base path, like ``http://storage.armcloud.us/``, ``file_server_resource`` defines the path on the server, like ``kernel-ci/next/``. When both resources are available, they should be joined together with the file names to form the actual URL. Implementation and default values are left to the user or the visualization tool using the data.
+
More Info
*********