summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/getting_started/getting_started.rst13
-rw-r--r--doc/getting_started/installation_win.rst4
-rw-r--r--doc/index.rst6
-rw-r--r--doc/subsystems/networking/networking-api-usage.rst2
-rw-r--r--doc/subsystems/networking/qemu_setup.rst2
-rw-r--r--samples/net/dhcpv4_client/README.rst2
-rw-r--r--samples/net/dns_resolve/README.rst7
-rw-r--r--samples/net/zoap_client/README.rst2
-rw-r--r--samples/net/zoap_server/README.rst2
9 files changed, 14 insertions, 26 deletions
diff --git a/doc/getting_started/getting_started.rst b/doc/getting_started/getting_started.rst
index d0ad58bce..df8e1b8e4 100644
--- a/doc/getting_started/getting_started.rst
+++ b/doc/getting_started/getting_started.rst
@@ -28,23 +28,18 @@ Use the following procedures to create a new development environment.
Checking Out the Source Code Anonymously
========================================
-The code is hosted at the Linux Foundation with a Gerrit backend that supports
+The code is hosted in a GitHub repo that supports
anonymous cloning via git.
To clone the repository anonymously, enter:
.. code-block:: console
- $ git clone https://gerrit.zephyrproject.org/r/zephyr zephyr-project
+ $ git clone https://github.com/zephyrproject-rtos/zephyr.git
You have successfully checked out a copy of the source code to your local
machine.
-Once you're ready to start contributing, follow the steps to make yourself
-a Linux Foundation account at `Gerrit Accounts`_.
-
-.. _Gerrit Accounts: https://wiki.zephyrproject.org/view/Gerrit_accounts
-
Building and Running an Application
***********************************
@@ -207,8 +202,4 @@ hardware target you should always test on the actual hardware and should not
rely on testing in the QEMU emulation environment only.
-.. _Linux Foundation ID website: https://identity.linuxfoundation.org
-
-.. _Gerrit: https://gerrit.zephyrproject.org/
-
.. _GCC ARM Embedded: https://launchpad.net/gcc-arm-embedded
diff --git a/doc/getting_started/installation_win.rst b/doc/getting_started/installation_win.rst
index a1bc29044..0d7dfe804 100644
--- a/doc/getting_started/installation_win.rst
+++ b/doc/getting_started/installation_win.rst
@@ -86,7 +86,7 @@ up:
.. code-block:: console
$ cd ~
- $ git clone https://gerrit.zephyrproject.org/r/zephyr
+ $ git clone https://github.com/zephyrproject-rtos/zephyr.git
#. Also within the MSYS console, set up environment variables for the installed
tools and for the Zephyr environment (using the provided shell script):
@@ -211,7 +211,7 @@ Windows, you will need to build or install a toolchain:
.. code-block:: console
$ cd ~
- $ git clone https://gerrit.zephyrproject.org/r/zephyr
+ $ git clone https://github.com/zephyrproject-rtos/zephyr.git
9. Also within the MSYS console, set up environment variables for installed
tools and for the Zephyr environment (using the provided shell script):
diff --git a/doc/index.rst b/doc/index.rst
index 85fb421ae..7a434a27a 100644
--- a/doc/index.rst
+++ b/doc/index.rst
@@ -20,7 +20,7 @@ Zephyr Project Documentation
``https://www.zephyrproject.org/doc/<version>``. The following documentation
versions are available:
- `Zephyr 1.1.0`_ | `Zephyr 1.2.0`_ | `Zephyr 1.3.0`_ | `Zephyr 1.4.0`_ | `Zephyr 1.5.0`_ | `Zephyr 1.6.0`_ | `Zephyr 1.7.0`_
+ `Zephyr 1.5.0`_ | `Zephyr 1.6.0`_ | `Zephyr 1.7.0`_
Sections
********
@@ -57,7 +57,3 @@ Indices and Tables
.. _Zephyr 1.7.0: https://www.zephyrproject.org/doc/1.7.0/
.. _Zephyr 1.6.0: https://www.zephyrproject.org/doc/1.6.0/
.. _Zephyr 1.5.0: https://www.zephyrproject.org/doc/1.5.0/
-.. _Zephyr 1.4.0: https://www.zephyrproject.org/doc/1.4.0/
-.. _Zephyr 1.3.0: https://www.zephyrproject.org/doc/1.3.0/
-.. _Zephyr 1.2.0: https://www.zephyrproject.org/doc/1.2.0/
-.. _Zephyr 1.1.0: https://www.zephyrproject.org/doc/1.1.0/
diff --git a/doc/subsystems/networking/networking-api-usage.rst b/doc/subsystems/networking/networking-api-usage.rst
index 001cde508..3132bb92c 100644
--- a/doc/subsystems/networking/networking-api-usage.rst
+++ b/doc/subsystems/networking/networking-api-usage.rst
@@ -14,7 +14,7 @@ defined in :file:`include/net/buf.h` and BSD socket API uses linear memory buffe
This example creates a simple server that listens to incoming UDP connections
and sends the received data back. You can download the example application
-source file here `connectivity-example-app.c <https://gerrit.zephyrproject.org/r/gitweb?p=zephyr.git;a=blob;f=doc/subsystems/networking/connectivity-example-app.c>`_
+source file here `connectivity-example-app.c <https://raw.githubusercontent.com/zephyrproject-rtos/zephyr/master/doc/subsystems/networking/connectivity-example-app.c>`_
This example application begins with some initialization. (Use this as an
example; you may need to do things differently in your own application.)
diff --git a/doc/subsystems/networking/qemu_setup.rst b/doc/subsystems/networking/qemu_setup.rst
index 1ef236706..8b1dbf328 100644
--- a/doc/subsystems/networking/qemu_setup.rst
+++ b/doc/subsystems/networking/qemu_setup.rst
@@ -19,7 +19,7 @@ in a separate git repository:
.. code-block:: console
- $ git clone https://gerrit.zephyrproject.org/r/net-tools
+ $ git clone https://github.com/zephyrproject-rtos/net-tools
$ cd net-tools
$ make
diff --git a/samples/net/dhcpv4_client/README.rst b/samples/net/dhcpv4_client/README.rst
index 6d8e15543..0da1e5252 100644
--- a/samples/net/dhcpv4_client/README.rst
+++ b/samples/net/dhcpv4_client/README.rst
@@ -29,7 +29,7 @@ Follow readme from:
Run 'loop_socat' and 'loop-slip-tap' scripts from net-tools.
- https://gerrit.zephyrproject.org/r/gitweb?p=net-tools.git;a=blob;f=README
+ https://github.com/zephyrproject-rtos/net-tools
.. code-block:: console
diff --git a/samples/net/dns_resolve/README.rst b/samples/net/dns_resolve/README.rst
index 22a3e1cba..7529493c0 100644
--- a/samples/net/dns_resolve/README.rst
+++ b/samples/net/dns_resolve/README.rst
@@ -86,7 +86,7 @@ script can be found in net-tools project.
The net-tools can be downloaded from
- https://gerrit.zephyrproject.org/r/gitweb?p=net-tools.git;a=blob;f=README
+ https://github.com/zephyrproject-rtos/net-tools
Open a terminal window and type:
@@ -126,9 +126,10 @@ Open a terminal window and type:
$ make
-Run 'loop_socat.sh' and 'loop-slip-tap.sh' as indicated at:
+Run 'loop_socat.sh' and 'loop-slip-tap.sh' as shown in the net-tools README
+at:
- https://gerrit.zephyrproject.org/r/gitweb?p=net-tools.git;a=blob;f=README
+ https://github.com/zephyrproject-rtos/net-tools
Open a terminal where the project was build (i.e. :file:`samples/net/dns_resolve`) and type:
diff --git a/samples/net/zoap_client/README.rst b/samples/net/zoap_client/README.rst
index 14f2954fc..081301f84 100644
--- a/samples/net/zoap_client/README.rst
+++ b/samples/net/zoap_client/README.rst
@@ -45,4 +45,4 @@ Sample output
.. note: The values shown above might differ.
-.. _`net-tools`: https://gerrit.zephyrproject.org/r/gitweb?p=net-tools.git;a=tree
+.. _`net-tools`: https://github.com/zephyrproject-rtos/net-tools
diff --git a/samples/net/zoap_server/README.rst b/samples/net/zoap_server/README.rst
index bdb8b5fad..a9b7e9f76 100644
--- a/samples/net/zoap_server/README.rst
+++ b/samples/net/zoap_server/README.rst
@@ -60,6 +60,6 @@ configuration file enabling IEEE 802.15.4:
make CONF_FILE=prj_cc2520.conf run
-.. _`net-tools`: https://gerrit.zephyrproject.org/r/gitweb?p=net-tools.git;a=tree
+.. _`net-tools`: https://github.com/zephyrproject-rtos/net-tools
.. _`libcoap`: https://github.com/obgm/libcoap