diff options
author | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2016-09-19 08:07:38 -0300 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2016-09-20 18:33:46 -0600 |
commit | f0ddda3e94136e14320be63f5dfb22114a4877cc (patch) | |
tree | 024ebd17ad20ac916091e3efad2056b3e5461e94 | |
parent | 88b72c08e852d08c3f7761805a3a919935b64e22 (diff) | |
download | op-kernel-dev-f0ddda3e94136e14320be63f5dfb22114a4877cc.zip op-kernel-dev-f0ddda3e94136e14320be63f5dfb22114a4877cc.tar.gz |
docs-rst: create a book for the development process
Now that the files at Documentation/development-process/
were converted to ReST, make create a book at Sphinx.
As we'll have other books related to the development process,
we'll add it as a sub-book.
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
-rw-r--r-- | Documentation/conf.py | 2 | ||||
-rw-r--r-- | Documentation/development-process/conf.py | 10 | ||||
-rw-r--r-- | Documentation/development-process/index.rst | 9 | ||||
-rw-r--r-- | Documentation/index.rst | 1 |
4 files changed, 22 insertions, 0 deletions
diff --git a/Documentation/conf.py b/Documentation/conf.py index ab484e5..d9fd920 100644 --- a/Documentation/conf.py +++ b/Documentation/conf.py @@ -338,6 +338,8 @@ latex_elements = { latex_documents = [ ('kernel-documentation', 'kernel-documentation.tex', 'The Linux Kernel Documentation', 'The kernel development community', 'manual'), + ('development-process/index', 'development-process.tex', 'Linux Kernel Development Documentation', + 'The kernel development community', 'manual'), ('gpu/index', 'gpu.tex', 'Linux GPU Driver Developer\'s Guide', 'The kernel development community', 'manual'), ] diff --git a/Documentation/development-process/conf.py b/Documentation/development-process/conf.py new file mode 100644 index 0000000..4b4a12d --- /dev/null +++ b/Documentation/development-process/conf.py @@ -0,0 +1,10 @@ +# -*- coding: utf-8; mode: python -*- + +project = 'Linux Kernel Development Documentation' + +tags.add("subproject") + +latex_documents = [ + ('index', 'development-process.tex', 'Linux Kernel Development Documentation', + 'The kernel development community', 'manual'), +] diff --git a/Documentation/development-process/index.rst b/Documentation/development-process/index.rst new file mode 100644 index 0000000..c37475d --- /dev/null +++ b/Documentation/development-process/index.rst @@ -0,0 +1,9 @@ +Linux Kernel Development Documentation +====================================== + +Contents: + +.. toctree:: + :maxdepth: 2 + + development-process diff --git a/Documentation/index.rst b/Documentation/index.rst index 9fe5e0c..d9ccb94 100644 --- a/Documentation/index.rst +++ b/Documentation/index.rst @@ -12,6 +12,7 @@ Contents: :maxdepth: 2 kernel-documentation + development-process/index dev-tools/tools driver-api/index media/index |