As per [0] the OVN project now has a separate Patchwork Instance, let's reflect that fact in the documentation.
0: https://mail.openvswitch.org/pipermail/ovs-dev/2020-September/374317.html Signed-off-by: Frode Nordahl <[email protected]> --- Documentation/faq/contributing.rst | 12 ++++++------ Documentation/internals/patchwork.rst | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Documentation/faq/contributing.rst b/Documentation/faq/contributing.rst index 908f283b0..12d8056b4 100644 --- a/Documentation/faq/contributing.rst +++ b/Documentation/faq/contributing.rst @@ -59,14 +59,14 @@ Q: How do I apply patches from email? Another way to apply emailed patches is to use the ``pwclient`` program, which can obtain patches from patchwork and apply them directly. Download - ``pwclient`` at https://patchwork.ozlabs.org/project/openvswitch/. You - probably want to set up a ``.pwclientrc`` that looks something like this:: + ``pwclient`` at https://patchwork.ozlabs.org/project/ovn/. You probably + want to set up a ``.pwclientrc`` that looks something like this:: [options] - default=openvswitch + default=ovn signoff=true - [openvswitch] + [ovn] url=https://patchwork.ozlabs.org/xmlrpc/ After you install ``pwclient``, you can apply a patch from patchwork with @@ -79,13 +79,13 @@ Q: How do I apply patches from email? ``pip install git-pw``. Alternative installation instructions and general documentation can be found at https://patchwork.readthedocs.io/projects/git-pw/en/latest/. You need to - use your openvswitch patchwork login or create one at + use your ovn patchwork login or create one at https://patchwork.ozlabs.org/register/. The following can then be set on the command line with ``git config`` or through a ``.gitconfig`` like this:: [pw] server=https://patchwork.ozlabs.org/api/1.0 - project=openvswitch + project=ovn username=<username> password=<password> diff --git a/Documentation/internals/patchwork.rst b/Documentation/internals/patchwork.rst index f1f827476..52898dbc3 100644 --- a/Documentation/internals/patchwork.rst +++ b/Documentation/internals/patchwork.rst @@ -41,7 +41,7 @@ Open vSwitch and OVN: - A usable UI for viewing patch discussions __ https://github.com/getpatchwork/patchwork -__ https://patchwork.ozlabs.org/project/openvswitch/list/ +__ https://patchwork.ozlabs.org/project/ovn/list/ .. _git-pw: @@ -63,7 +63,7 @@ Once your token is obtained, configure *git-pw* as below. Note that this must be run from within the OVN Git repository:: $ git config pw.server https://patchwork.ozlabs.org/ - $ git config pw.project openvswitch + $ git config pw.project ovn $ git config pw.token $PW_TOKEN # using the token obtained earlier Once configured, run the following to get information about available -- 2.29.2 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
