Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757996AbcJQQ5P (ORCPT ); Mon, 17 Oct 2016 12:57:15 -0400 Received: from bombadil.infradead.org ([198.137.202.9]:44028 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757610AbcJQQ4Q (ORCPT ); Mon, 17 Oct 2016 12:56:16 -0400 From: Mauro Carvalho Chehab To: Linux Doc Mailing List Cc: Mauro Carvalho Chehab , Mauro Carvalho Chehab , LKML , Jonathan Corbet , Greg Kroah-Hartman , Mauro Carvalho Chehab Subject: [PATCH 05/32] docs-rst: add documents to development-process Date: Mon, 17 Oct 2016 14:55:42 -0200 Message-Id: <95faf82448d5d92be964d9ae5402eeff26e4d504.1476717925.git.mchehab@s-opensource.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: References: In-Reply-To: References: Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 6480 Lines: 166 Add several documents to the development-process ReST book. As we don't want renames, use symlinks instead, keeping those documents on their original place. Acked-by: Greg Kroah-Hartman Signed-off-by: Mauro Carvalho Chehab --- Documentation/development-process/Changes.rst | 1 + Documentation/development-process/CodingStyle.rst | 1 + Documentation/development-process/HOWTO.rst | 1 + Documentation/development-process/ManagementStyle.rst | 1 + Documentation/development-process/SubmitChecklist.rst | 1 + .../development-process/SubmittingDrivers.rst | 1 + .../development-process/SubmittingPatches.rst | 1 + .../development-process/applying-patches.rst | 1 + Documentation/development-process/email-clients.rst | 1 + Documentation/development-process/index.rst | 19 +++++++++++++++++++ Documentation/development-process/kernel-docs.rst | 1 + .../development-process/stable_api_nonsense.rst | 1 + .../development-process/stable_kernel_rules.rst | 1 + 13 files changed, 31 insertions(+) create mode 120000 Documentation/development-process/Changes.rst create mode 120000 Documentation/development-process/CodingStyle.rst create mode 120000 Documentation/development-process/HOWTO.rst create mode 120000 Documentation/development-process/ManagementStyle.rst create mode 120000 Documentation/development-process/SubmitChecklist.rst create mode 120000 Documentation/development-process/SubmittingDrivers.rst create mode 120000 Documentation/development-process/SubmittingPatches.rst create mode 120000 Documentation/development-process/applying-patches.rst create mode 120000 Documentation/development-process/email-clients.rst create mode 120000 Documentation/development-process/kernel-docs.rst create mode 120000 Documentation/development-process/stable_api_nonsense.rst create mode 120000 Documentation/development-process/stable_kernel_rules.rst diff --git a/Documentation/development-process/Changes.rst b/Documentation/development-process/Changes.rst new file mode 120000 index 000000000000..91698e7753f1 --- /dev/null +++ b/Documentation/development-process/Changes.rst @@ -0,0 +1 @@ +../Changes \ No newline at end of file diff --git a/Documentation/development-process/CodingStyle.rst b/Documentation/development-process/CodingStyle.rst new file mode 120000 index 000000000000..0377b2fe8778 --- /dev/null +++ b/Documentation/development-process/CodingStyle.rst @@ -0,0 +1 @@ +../CodingStyle \ No newline at end of file diff --git a/Documentation/development-process/HOWTO.rst b/Documentation/development-process/HOWTO.rst new file mode 120000 index 000000000000..10734efe8eab --- /dev/null +++ b/Documentation/development-process/HOWTO.rst @@ -0,0 +1 @@ +../HOWTO \ No newline at end of file diff --git a/Documentation/development-process/ManagementStyle.rst b/Documentation/development-process/ManagementStyle.rst new file mode 120000 index 000000000000..a7d15159c108 --- /dev/null +++ b/Documentation/development-process/ManagementStyle.rst @@ -0,0 +1 @@ +../ManagementStyle \ No newline at end of file diff --git a/Documentation/development-process/SubmitChecklist.rst b/Documentation/development-process/SubmitChecklist.rst new file mode 120000 index 000000000000..7b75ef138e89 --- /dev/null +++ b/Documentation/development-process/SubmitChecklist.rst @@ -0,0 +1 @@ +../SubmitChecklist \ No newline at end of file diff --git a/Documentation/development-process/SubmittingDrivers.rst b/Documentation/development-process/SubmittingDrivers.rst new file mode 120000 index 000000000000..955fc75e6759 --- /dev/null +++ b/Documentation/development-process/SubmittingDrivers.rst @@ -0,0 +1 @@ +../SubmittingDrivers \ No newline at end of file diff --git a/Documentation/development-process/SubmittingPatches.rst b/Documentation/development-process/SubmittingPatches.rst new file mode 120000 index 000000000000..bd9bb84255d4 --- /dev/null +++ b/Documentation/development-process/SubmittingPatches.rst @@ -0,0 +1 @@ +../SubmittingPatches \ No newline at end of file diff --git a/Documentation/development-process/applying-patches.rst b/Documentation/development-process/applying-patches.rst new file mode 120000 index 000000000000..c124a067a16b --- /dev/null +++ b/Documentation/development-process/applying-patches.rst @@ -0,0 +1 @@ +../applying-patches.txt \ No newline at end of file diff --git a/Documentation/development-process/email-clients.rst b/Documentation/development-process/email-clients.rst new file mode 120000 index 000000000000..b4bbad729cca --- /dev/null +++ b/Documentation/development-process/email-clients.rst @@ -0,0 +1 @@ +../email-clients.txt \ No newline at end of file diff --git a/Documentation/development-process/index.rst b/Documentation/development-process/index.rst index c37475d91090..e6faabd34ab8 100644 --- a/Documentation/development-process/index.rst +++ b/Documentation/development-process/index.rst @@ -1,3 +1,9 @@ +.. raw:: latex + + \renewcommand\thesection* + \renewcommand\thesubsection* + + Linux Kernel Development Documentation ====================================== @@ -6,4 +12,17 @@ Contents: .. toctree:: :maxdepth: 2 + HOWTO + Changes + CodingStyle + SubmittingPatches + SubmittingDrivers + stable_api_nonsense + ManagementStyle + stable_kernel_rules + kernel-docs + applying-patches + email-clients + SubmitChecklist + development-process diff --git a/Documentation/development-process/kernel-docs.rst b/Documentation/development-process/kernel-docs.rst new file mode 120000 index 000000000000..1075b84514ff --- /dev/null +++ b/Documentation/development-process/kernel-docs.rst @@ -0,0 +1 @@ +../kernel-docs.txt \ No newline at end of file diff --git a/Documentation/development-process/stable_api_nonsense.rst b/Documentation/development-process/stable_api_nonsense.rst new file mode 120000 index 000000000000..2c44a79fdeef --- /dev/null +++ b/Documentation/development-process/stable_api_nonsense.rst @@ -0,0 +1 @@ +../stable_api_nonsense.txt \ No newline at end of file diff --git a/Documentation/development-process/stable_kernel_rules.rst b/Documentation/development-process/stable_kernel_rules.rst new file mode 120000 index 000000000000..320a01411304 --- /dev/null +++ b/Documentation/development-process/stable_kernel_rules.rst @@ -0,0 +1 @@ +../stable_kernel_rules.txt \ No newline at end of file -- 2.7.4