From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 48488809D for ; Fri, 10 Oct 2014 18:10:42 +0200 (CEST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga101.fm.intel.com with ESMTP; 10 Oct 2014 09:18:08 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.04,693,1406617200"; d="scan'208";a="603445065" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by fmsmga001.fm.intel.com with ESMTP; 10 Oct 2014 09:18:07 -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 s9AGI6ax022967 for ; Fri, 10 Oct 2014 17:18:06 +0100 Received: from sivswdev01.ir.intel.com (localhost [127.0.0.1]) by sivswdev01.ir.intel.com with ESMTP id s9AGI6W9015383 for ; Fri, 10 Oct 2014 17:18:06 +0100 Received: (from bairemon@localhost) by sivswdev01.ir.intel.com with id s9AGI65a015379 for dev@dpdk.org; Fri, 10 Oct 2014 17:18:06 +0100 From: Bernard Iremonger To: dev@dpdk.org Date: Fri, 10 Oct 2014 17:18:06 +0100 Message-Id: <1412957886-15040-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: Fri, 10 Oct 2014 16:10:42 -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 8777aabc538fdac24457958eaab929f33d6c4cdf: ixgbe: require only sse3 intrinsics (2014-08-13 01:47:03 +0200) are available in the git repository at: ssh://bernard@dpdk.org/home/bernard/dpdk-doc-next.git/ DPDK_Linux_GSG Bernard Iremonger (2): doc: rst files and conf file for DPDK_Linux_GSG doc: makefiles for doxygen and sphinx .../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 | 91 ++++++ doc/guides/conf.py | 99 +++++++ doc/guides/index.rst | 13 + mk/rte.sdkdoc.mk | 3 +- mk/rte.sdkguides.mk | 64 +++++ mk/rte.sdkroot.mk | 5 +- 12 files changed, 1443 insertions(+), 2 deletions(-) create mode 100644 doc/guides/DPDK_Linux_GSG/Compiling_and_Running_Sample_Applications.rst create mode 100644 doc/guides/DPDK_Linux_GSG/Compiling_the_Intel_DPDK_Target_from_Source.rst create mode 100644 doc/guides/DPDK_Linux_GSG/Enabling_Additional_Functionality.rst create mode 100644 doc/guides/DPDK_Linux_GSG/Introduction.rst create mode 100644 doc/guides/DPDK_Linux_GSG/Quick_Start_Setup_Script.rst create mode 100644 doc/guides/DPDK_Linux_GSG/System_Requirements.rst create mode 100644 doc/guides/DPDK_Linux_GSG/index.rst create mode 100755 doc/guides/conf.py create mode 100644 doc/guides/index.rst create mode 100644 mk/rte.sdkguides.mk