diff mbox series

doc/bitbake-setup: add example of ssh:// uri

Message ID 20260113175214.2570644-1-tim.orling@konsulko.com
State New
Headers show
Series doc/bitbake-setup: add example of ssh:// uri | expand

Commit Message

Tim Orling Jan. 13, 2026, 5:52 p.m. UTC
From: Tim Orling <tim.orling@konsulko.com>

For private git repositories, we often need to use the ssh git fetcher;
add a hypothetical example to Generic Configuration Files Reference.

Signed-off-by: Tim Orling <tim.orling@konsulko.com>
---
 .../bitbake-user-manual-environment-setup.rst        | 12 ++++++++++++
 1 file changed, 12 insertions(+)
diff mbox series

Patch

diff --git a/doc/bitbake-user-manual/bitbake-user-manual-environment-setup.rst b/doc/bitbake-user-manual/bitbake-user-manual-environment-setup.rst
index ec1bdeecd..635e0c76a 100644
--- a/doc/bitbake-user-manual/bitbake-user-manual-environment-setup.rst
+++ b/doc/bitbake-user-manual/bitbake-user-manual-environment-setup.rst
@@ -687,6 +687,18 @@  They contain the following sections:
                  "local": {
                      "path": "~/path/to/local/openembedded-core"
                  }
+             },
+             "meta-private": {
+                 "git-remote": {
+                     "remotes": {
+                         "origin": {
+                             "uri": "ssh://git@git.example.com/meta-private"
+                         }
+                     },
+                     "branch": "master",
+                     "rev": "master"
+                 },
+                 "path": "meta-private"
              }
          }
       }