From patchwork Fri Feb 24 07:38:38 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Steve Kowalik X-Patchwork-Id: 9589515 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 496C8601AE for ; Fri, 24 Feb 2017 08:24:27 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 3AB02283F8 for ; Fri, 24 Feb 2017 08:24:27 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 2D88E2849D; Fri, 24 Feb 2017 08:24:27 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 8CB54283F8 for ; Fri, 24 Feb 2017 08:24:26 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751154AbdBXIY0 (ORCPT ); Fri, 24 Feb 2017 03:24:26 -0500 Received: from mangled.wedontsleep.org ([66.160.141.163]:60184 "EHLO mangled.wedontsleep.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751001AbdBXIYZ (ORCPT ); Fri, 24 Feb 2017 03:24:25 -0500 Received: from wrecked.inside.wedontsleep.org (148.5.233.220.static.exetel.com.au [220.233.5.148]) by mangled.wedontsleep.org (Postfix) with ESMTPSA id 7859A409D2; Fri, 24 Feb 2017 18:39:25 +1100 (AEDT) From: Steve Kowalik To: Jonathan Corbet Cc: Yoshinori Sato , Rich Felker , linux-doc@vger.kernel.org, linux-sh@vger.kernel.org, Steve Kowalik Subject: [PATCH 2/2] Documentation: Add arch-guide documentation Date: Fri, 24 Feb 2017 18:38:38 +1100 Message-Id: <1487921918-25203-3-git-send-email-steven@wedontsleep.org> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1487921918-25203-1-git-send-email-steven@wedontsleep.org> References: <1487921918-25203-1-git-send-email-steven@wedontsleep.org> Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Add the new SuperH interfaces RST into the documentation tree by adding a new arch-guide. Signed-off-by: Steve Kowalik --- Documentation/00-INDEX | 2 ++ Documentation/arch-guide/conf.py | 10 ++++++++++ Documentation/arch-guide/index.rst | 14 ++++++++++++++ Documentation/index.rst | 11 +++++++++++ 4 files changed, 37 insertions(+) create mode 100644 Documentation/arch-guide/conf.py create mode 100644 Documentation/arch-guide/index.rst diff --git a/Documentation/00-INDEX b/Documentation/00-INDEX index c8a8eb1..64625d0 100644 --- a/Documentation/00-INDEX +++ b/Documentation/00-INDEX @@ -60,6 +60,8 @@ admin-guide/ - info related to Linux users and system admins. aoe/ - description of AoE (ATA over Ethernet) along with config examples. +arch-guide/ + - info related to architecture-specific code. arm/ - directory with info about Linux on the ARM architecture. arm64/ diff --git a/Documentation/arch-guide/conf.py b/Documentation/arch-guide/conf.py new file mode 100644 index 0000000..2ac424b --- /dev/null +++ b/Documentation/arch-guide/conf.py @@ -0,0 +1,10 @@ +# -*- coding: utf-8; mode: python -*- + +project = 'Linux Kernel architecture-specific Documentation' + +tags.add("subproject") + +latex_documents = [ + ('index', 'Linux Kernel architecture-specific Documentation', + 'The kernel development community', 'manual'), +] diff --git a/Documentation/arch-guide/index.rst b/Documentation/arch-guide/index.rst new file mode 100644 index 0000000..1db4658 --- /dev/null +++ b/Documentation/arch-guide/index.rst @@ -0,0 +1,14 @@ +The Linux kernel architecture-specific documentation +==================================================== + +The following is a collection of architecture-specific documentation for the +different architectures that the kernel supports. + +SuperH +------ + +.. toctree:: + :maxdepth: 1 + + ../sh/interfaces.rst + diff --git a/Documentation/index.rst b/Documentation/index.rst index f6e641a..6b3f570 100644 --- a/Documentation/index.rst +++ b/Documentation/index.rst @@ -60,6 +60,17 @@ needed). sound/index crypto/index +Architecture-specific documentation +----------------------------------- + +These documents get into the details of architecture-specific code or +interfaces. + +.. toctree:: + :maxdepth: 2 + + arch-guide/index + Korean translations -------------------