lkml.org 
[lkml]   [2016]   [Oct]   [17]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 05/32] docs-rst: add documents to development-process
    Date
    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 <gregkh@linuxfoundation.org>
    Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
    ---
    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

    \
     
     \ /
      Last update: 2016-10-17 18:57    [W:4.326 / U:0.668 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site