From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 58F857E87 for ; Wed, 8 Oct 2014 17:05:30 +0200 (CEST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga102.fm.intel.com with ESMTP; 08 Oct 2014 08:12:31 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.04,677,1406617200"; d="scan'208";a="602324727" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by fmsmga001.fm.intel.com with ESMTP; 08 Oct 2014 08:12:30 -0700 Received: from sivswdev01.ir.intel.com (sivswdev01.ir.intel.com [10.237.217.45]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id s98FCUWJ024591 for ; Wed, 8 Oct 2014 16:12:30 +0100 Received: from sivswdev01.ir.intel.com (localhost [127.0.0.1]) by sivswdev01.ir.intel.com with ESMTP id s98FCU6p027147 for ; Wed, 8 Oct 2014 16:12:30 +0100 Received: (from bairemon@localhost) by sivswdev01.ir.intel.com with id s98FCTBO027143 for dev@dpdk.org; Wed, 8 Oct 2014 16:12:29 +0100 From: Bernard Iremonger To: dev@dpdk.org Date: Wed, 8 Oct 2014 16:12:29 +0100 Message-Id: <1412781149-27101-1-git-send-email-bernard.iremonger@intel.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: References: Subject: [dpdk-dev] [PULL REQUEST] doc: generate DPDK_Linux_GSG with Sphinx. 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: , X-List-Received-Date: Wed, 08 Oct 2014 15:05:31 -0000 These changes are a conversion of the DPDK_Linux_GSG from an MSWord file to Sphinx rst files, and makefile changes. The following changes since commit a5235ae1cd83360d4a7b156b8d983126c327b154: delete DPDK_Linux_GSG (2014-10-08 14:41:14 +0100) are available in the git repository at: ssh://bernard@dpdk.org/home/bernard/dpdk-doc-next.git/ master Bernard Iremonger (2): makefiles for doxygen and sphinx config and rst files for DPDK_Linux_GSG .../Compiling_and_Running_Sample_Applications.rst | 201 +++++++++++++ ...Compiling_the_Intel_DPDK_Target_from_Source.rst | 226 +++++++++++++++ .../Enabling_Additional_Functionality.rst | 167 +++++++++++ doc/guides/DPDK_Linux_GSG/Introduction.rst | 42 +++ .../DPDK_Linux_GSG/Quick_Start_Setup_Script.rst | 294 ++++++++++++++++++++ doc/guides/DPDK_Linux_GSG/System_Requirements.rst | 240 ++++++++++++++++ doc/guides/DPDK_Linux_GSG/index.rst | 92 ++++++ doc/guides/conf.py | 101 +++++++ doc/guides/index.rst | 14 + mk/rte.sdkdoc.mk | 70 +++++ mk/rte.sdkguides.mk | 184 ++++++++++++ mk/rte.sdkroot.mk | 136 +++++++++ 12 files changed, 1767 insertions(+), 0 deletions(-) create mode 100755 doc/guides/DPDK_Linux_GSG/Compiling_and_Running_Sample_Applications.rst create mode 100755 doc/guides/DPDK_Linux_GSG/Compiling_the_Intel_DPDK_Target_from_Source.rst create mode 100755 doc/guides/DPDK_Linux_GSG/Enabling_Additional_Functionality.rst create mode 100755 doc/guides/DPDK_Linux_GSG/Introduction.rst create mode 100755 doc/guides/DPDK_Linux_GSG/Quick_Start_Setup_Script.rst create mode 100755 doc/guides/DPDK_Linux_GSG/System_Requirements.rst create mode 100755 doc/guides/DPDK_Linux_GSG/index.rst create mode 100755 doc/guides/conf.py create mode 100755 doc/guides/index.rst create mode 100644 mk/rte.sdkdoc.mk create mode 100644 mk/rte.sdkguides.mk create mode 100644 mk/rte.sdkroot.mk