summaryrefslogtreecommitdiffstats
path: root/Documentation/crypto
diff options
context:
space:
mode:
authorJonathan Corbet2017-05-18 19:03:08 +0200
committerJonathan Corbet2017-05-18 19:03:08 +0200
commit6312811be26f4a97fb36f53ffffafa5086833a28 (patch)
tree66082d254d384ed1a5ac869f9b5c96aa78bab95b /Documentation/crypto
parentDocumentation, kbuild: fix typo "minimun" -> "minimum" (diff)
parentkernel-doc: describe the ``literal`` syntax (diff)
downloadkernel-qcow2-linux-6312811be26f4a97fb36f53ffffafa5086833a28.tar.gz
kernel-qcow2-linux-6312811be26f4a97fb36f53ffffafa5086833a28.tar.xz
kernel-qcow2-linux-6312811be26f4a97fb36f53ffffafa5086833a28.zip
Merge remote-tracking branch 'mauro-exp/docbook3' into death-to-docbook
Mauro says: This patch series convert the remaining DocBooks to ReST. The first version was originally send as 3 patch series: [PATCH 00/36] Convert DocBook documents to ReST [PATCH 0/5] Convert more books to ReST [PATCH 00/13] Get rid of DocBook The lsm book was added as if it were a text file under Documentation. The plan is to merge it with another file under Documentation/security, after both this series and a security Documentation patch series gets merged. It also adjusts some Sphinx-pedantic errors/warnings on some kernel-doc markups. I also added some patches here to add PDF output for all existing ReST books.
Diffstat (limited to 'Documentation/crypto')
-rw-r--r--Documentation/crypto/conf.py10
1 files changed, 10 insertions, 0 deletions
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 @@
+# -*- coding: utf-8; mode: python -*-
+
+project = 'Linux Kernel Crypto API'
+
+tags.add("subproject")
+
+latex_documents = [
+ ('index', 'crypto-api.tex', 'Linux Kernel Crypto API manual',
+ 'The kernel development community', 'manual'),
+]