aboutsummaryrefslogtreecommitdiff
path: root/Documentation/kernel-hacking/conf.py
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@s-opensource.com>2017-05-11 08:03:27 -0300
committerMauro Carvalho Chehab <mchehab@s-opensource.com>2017-05-16 08:00:49 -0300
commitc4fcd7cabb83fcac1e83e17845b1fede5401aa25 (patch)
treed414486838d96dd4b512729d2f99338b61d2614f /Documentation/kernel-hacking/conf.py
parent25a0da73f24c95d57381bedd9cd89e4929b1bfde (diff)
docs-rst: convert kernel-hacking to ReST
Use pandoc to convert documentation to ReST by calling Documentation/sphinx/tmplcvt script. - Manually adjusted to use ..note and ..warning - Minor fixes for it to be parsed without errors - Use **bold** for emphasis. Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'Documentation/kernel-hacking/conf.py')
-rw-r--r--Documentation/kernel-hacking/conf.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/Documentation/kernel-hacking/conf.py b/Documentation/kernel-hacking/conf.py
new file mode 100644
index 000000000000..3d8acf0f33ad
--- /dev/null
+++ b/Documentation/kernel-hacking/conf.py
@@ -0,0 +1,10 @@
+# -*- coding: utf-8; mode: python -*-
+
+project = "Kernel Hacking Guides"
+
+tags.add("subproject")
+
+latex_documents = [
+ ('index', 'kernel-hacking.tex', project,
+ 'The kernel development community', 'manual'),
+]