diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2018-01-05 17:39:36 +0100 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2018-01-05 17:39:36 +0100 |
commit | 9358c9fb4b198adf8594cedd6b8941d88dec63e9 (patch) | |
tree | 807dc35de2dccbf6e96d498a0d01eece293f2ecb /docs/part-2/2_xds-agent.md | |
parent | fb3fdb7bc37627489eda28c374177af879c924af (diff) |
XDS sources are now hold under AGL Gerrit (update refs).
Diffstat (limited to 'docs/part-2/2_xds-agent.md')
-rw-r--r-- | docs/part-2/2_xds-agent.md | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/part-2/2_xds-agent.md b/docs/part-2/2_xds-agent.md index abe3d15..5c9e114 100644 --- a/docs/part-2/2_xds-agent.md +++ b/docs/part-2/2_xds-agent.md @@ -6,7 +6,7 @@ This agent takes care, among others, of starting [Syncthing](https://syncthing.n tool to synchronize your project files from your local host to XDS build server machine or container (where `xds-server` is running). -> **SEE ALSO**: [xds-server](https://github.com/iotbzh/xds-server), a web server +> **SEE ALSO**: [xds-server](https://gerrit.automotivelinux.org/gerrit/gitweb?p=src/xds/xds-server.git), a web server used to remotely cross build applications. ## Configuration @@ -66,7 +66,6 @@ Simply to start `xds-agent` executable `--log <level>`, supported *level* are: panic, fatal, error, warn, info, debug. You can now use XDS dashboard and check that connection with `xds-agent` is up. -(see also [xds-server README](https://github.com/iotbzh/xds-server/blob/master/README.md#xds-dashboard)) ## Build xds-agent from scratch @@ -101,12 +100,13 @@ Don't forget to open new user session after installing the packages. ### Building -Clone this repo into your `$GOPATH/src/github.com/iotbzh` and use delivered Makefile: +Clone this repo into your `$GOPATH/src/gerrit.automotivelinux.org/gerrit/src/xds` and use delivered Makefile: ```bash - mkdir -p $GOPATH/src/github.com/iotbzh - cd $GOPATH/src/github.com/iotbzh - git clone https://github.com/iotbzh/xds-agent.git + mkdir -p $GOPATH/src/gerrit.automotivelinux.org/gerrit/src/xds + cd $GOPATH/src/gerrit.automotivelinux.org/gerrit/src/xds + git clone https://gerrit.automotivelinux.org/gerrit/src/xds/xds-agent + # or git clone ssh://YOUR_USERNAME@gerrit.automotivelinux.org:29418/src/xds/xds-agent cd xds-agent make all ``` @@ -201,6 +201,6 @@ Then invoke `vendor/debug` Makefile rule to create a symlink inside vendor directory : ```bash -cd src/github.com/iotbzh/xds-agent +cd src/gerrit.automotivelinux.org/gerrit/src/xds/xds-agent make vendor/debug ``` |