summaryrefslogtreecommitdiffstats
path: root/Documentation
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@s-opensource.com>2017-05-12 05:14:08 -0400
committerMauro Carvalho Chehab <mchehab@s-opensource.com>2017-05-16 07:44:06 -0400
commit8db0b75f4262edc7bb5d25137c2780d9c3186288 (patch)
treee5b2431bdba81431ee9dda657f796938ce4e2f1c /Documentation
parent1d8c4e1fded88588a172bec4df5ade953916f574 (diff)
docs-rst: add crypto API book to pdf output
The crypto API book was added without the bits required to generate PDF output. Add them. Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/conf.py2
-rw-r--r--Documentation/crypto/conf.py10
2 files changed, 12 insertions, 0 deletions
diff --git a/Documentation/conf.py b/Documentation/conf.py
index 15f34d6863a7..ce62723491d4 100644
--- a/Documentation/conf.py
+++ b/Documentation/conf.py
@@ -351,6 +351,8 @@ latex_documents = [
351 'The kernel development community', 'manual'), 351 'The kernel development community', 'manual'),
352 ('core-api/index', 'core-api.tex', 'The kernel core API manual', 352 ('core-api/index', 'core-api.tex', 'The kernel core API manual',
353 'The kernel development community', 'manual'), 353 'The kernel development community', 'manual'),
354 ('crypto/index', 'crypto-api.tex', 'Linux Kernel Crypto API manual',
355 'The kernel development community', 'manual'),
354 ('doc-guide/index', 'kernel-doc-guide.tex', 'Linux Kernel Documentation Guide', 356 ('doc-guide/index', 'kernel-doc-guide.tex', 'Linux Kernel Documentation Guide',
355 'The kernel development community', 'manual'), 357 'The kernel development community', 'manual'),
356 ('driver-api/index', 'driver-api.tex', 'The kernel driver API manual', 358 ('driver-api/index', 'driver-api.tex', 'The kernel driver API manual',
diff --git a/Documentation/crypto/conf.py b/Documentation/crypto/conf.py
new file mode 100644
index 000000000000..4335d251ddf3
--- /dev/null
+++ b/Documentation/crypto/conf.py
@@ -0,0 +1,10 @@
1# -*- coding: utf-8; mode: python -*-
2
3project = 'Linux Kernel Crypto API'
4
5tags.add("subproject")
6
7latex_documents = [
8 ('index', 'crypto-api.tex', 'Linux Kernel Crypto API manual',
9 'The kernel development community', 'manual'),
10]