diff options
author | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2016-11-17 11:32:33 +0100 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2016-11-19 18:22:04 +0100 |
commit | 1dc4bbf0b268246f6202c761016735933b6f0b99 (patch) | |
tree | 0bb12a6c59472d8167dbebac4fe6a68023956813 /Documentation/doc-guide/conf.py | |
parent | Merge remote-tracking branch 'sound/topic/restize-docs' into sound (diff) | |
download | linux-1dc4bbf0b268246f6202c761016735933b6f0b99.tar.xz linux-1dc4bbf0b268246f6202c761016735933b6f0b99.zip |
docs-rst: doc-guide: split the kernel-documentation.rst contents
Having the kernel-documentation at the topmost level doesn't
allow generating a separate PDF file for it. Also, makes harder
to add extra contents. So, place it on a sub-dir.
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation/doc-guide/conf.py')
-rw-r--r-- | Documentation/doc-guide/conf.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Documentation/doc-guide/conf.py b/Documentation/doc-guide/conf.py new file mode 100644 index 000000000000..fd3731182d5a --- /dev/null +++ b/Documentation/doc-guide/conf.py @@ -0,0 +1,10 @@ +# -*- coding: utf-8; mode: python -*- + +project = 'Linux Kernel Documentation Guide' + +tags.add("subproject") + +latex_documents = [ + ('index', 'kernel-doc-guide.tex', 'Linux Kernel Documentation Guide', + 'The kernel development community', 'manual'), +] |