summaryrefslogtreecommitdiffstats
path: root/bitbake/doc/bitbake-user-manual/bitbake-user-manual-fetching.rst
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/doc/bitbake-user-manual/bitbake-user-manual-fetching.rst')
-rw-r--r--bitbake/doc/bitbake-user-manual/bitbake-user-manual-fetching.rst28
1 files changed, 28 insertions, 0 deletions
diff --git a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-fetching.rst b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-fetching.rst
index 6760b10828..e9a5f336df 100644
--- a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-fetching.rst
+++ b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-fetching.rst
@@ -624,6 +624,34 @@ Here are some example URLs: ::
624 SRC_URI = "repo://REPOROOT;protocol=git;branch=some_branch;manifest=my_manifest.xml" 624 SRC_URI = "repo://REPOROOT;protocol=git;branch=some_branch;manifest=my_manifest.xml"
625 SRC_URI = "repo://REPOROOT;protocol=file;branch=some_branch;manifest=my_manifest.xml" 625 SRC_URI = "repo://REPOROOT;protocol=file;branch=some_branch;manifest=my_manifest.xml"
626 626
627.. _az-fetcher:
628
629Az Fetcher (``az://``)
630--------------------------
631
632This submodule fetches data from an
633`Azure Storage account <https://docs.microsoft.com/en-us/azure/storage/>`__ ,
634it inherits its functionality from the HTTP wget fetcher, but modifies its
635behavior to accomodate the usage of a
636`Shared Access Signature (SAS) <https://docs.microsoft.com/en-us/azure/storage/common/storage-sas-overview>`__
637for non-public data.
638
639Such functionality is set by the variable:
640
641- :term:`AZ_SAS`: The Azure Storage Shared Access Signature provides secure
642 delegate access to resources, if this variable is set, the Az Fetcher will
643 use it when fetching artifacts from the cloud.
644
645You can specify the AZ_SAS variable as shown below: ::
646
647 AZ_SAS = "se=2021-01-01&sp=r&sv=2018-11-09&sr=c&skoid=<skoid>&sig=<signature>"
648
649Here is an example URL: ::
650
651 SRC_URI = "az://<azure-storage-account>.blob.core.windows.net/<foo_container>/<bar_file>"
652
653It can also be used when setting mirrors definitions using the :term:`PREMIRRORS` variable.
654
627Other Fetchers 655Other Fetchers
628-------------- 656--------------
629 657