From patchwork Thu Nov 10 17:27:18 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ferruh Yigit X-Patchwork-Id: 16997 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id BF09E3238; Thu, 10 Nov 2016 18:27:24 +0100 (CET) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id B2D9DA10 for ; Thu, 10 Nov 2016 18:27:22 +0100 (CET) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga104.jf.intel.com with ESMTP; 10 Nov 2016 09:27:21 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos; i="5.31,619,1473145200"; d="scan'208"; a="1083508143" Received: from sivlogin002.ir.intel.com ([10.237.217.37]) by fmsmga002.fm.intel.com with ESMTP; 10 Nov 2016 09:27:20 -0800 From: Ferruh Yigit To: dev@dpdk.org Cc: John McNamara , Thomas Monjalon Date: Thu, 10 Nov 2016 17:27:18 +0000 Message-Id: <20161110172718.2292-1-ferruh.yigit@intel.com> X-Mailer: git-send-email 2.8.4 Subject: [dpdk-dev] [PATCH] doc: add sub-repositories information X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" DPDK switched to main and sub-repositories approach, this patch documents new approach and updates development process according. Signed-off-by: Ferruh Yigit Acked-by: John McNamara --- doc/guides/contributing/patches.rst | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/doc/guides/contributing/patches.rst b/doc/guides/contributing/patches.rst index 729aea7..bec9bfc 100644 --- a/doc/guides/contributing/patches.rst +++ b/doc/guides/contributing/patches.rst @@ -20,7 +20,14 @@ The DPDK development process has the following features: * There is a mailing list where developers submit patches. * There are maintainers for hierarchical components. * Patches are reviewed publicly on the mailing list. -* Successfully reviewed patches are merged to the master branch of the repository. +* Successfully reviewed patches are merged to the repository. + +| + +* There are main repository ``dpdk`` and sub-repositories ``dpdk-next-*``. +* A patch should be sent for its target repository. Like net drivers should be on top of dpdk-next-net repository. +* All sub-repositories merged into main repository for -rc1 and -rc2 versions of the release. +* After -rc2 release all patches should target main repository. The mailing list for DPDK development is `dev@dpdk.org `_. Contributors will need to `register for the mailing list `_ in order to submit patches. @@ -33,12 +40,17 @@ Refer to the `Pro Git Book `_ for further informat Getting the Source Code ----------------------- -The source code can be cloned using either of the following:: +The source code can be cloned using either of the following: - git clone git://dpdk.org/dpdk +main repository:: + git clone git://dpdk.org/dpdk git clone http://dpdk.org/git/dpdk +sub-repositories (`list `_):: + + git clone git://dpdk.org/next/dpdk-next-* + git clone http://dpdk.org/git/next/dpdk-next-* Make your Changes -----------------