1 # -*- coding: utf-8 -*-
3 # The Linux Kernel documentation build configuration file, created by
4 # sphinx-quickstart on Fri Feb 12 13:51:46 2016.
6 # This file is execfile()d with the current directory set to its
9 # Note that not all possible configuration values are present in this
12 # All configuration values have a default; values that are commented out
13 # serve to show the default.
18 # If extensions (or modules to document with autodoc) are in another directory,
19 # add these directories to sys.path here. If the directory is relative to the
20 # documentation root, use os.path.abspath to make it absolute, like shown here.
21 sys
.path
.insert(0, os
.path
.abspath('sphinx'))
23 # -- General configuration ------------------------------------------------
25 # If your documentation needs a minimal Sphinx version, state it here.
28 # Add any Sphinx extension module names here, as strings. They can be
29 # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
31 extensions
= ['kernel-doc', 'rstFlatTable', 'kernel_include']
33 # Gracefully handle missing rst2pdf.
36 extensions
+= ['rst2pdf.pdfbuilder']
40 # Add any paths that contain templates here, relative to this directory.
41 templates_path
= ['_templates']
43 # The suffix(es) of source filenames.
44 # You can specify multiple suffix as a list of string:
45 # source_suffix = ['.rst', '.md']
46 source_suffix
= '.rst'
48 # The encoding of source files.
49 #source_encoding = 'utf-8-sig'
51 # The master toctree document.
54 # General information about the project.
55 project
= 'The Linux Kernel'
56 copyright
= '2016, The kernel development community'
57 author
= 'The kernel development community'
59 # The version info for the project you're documenting, acts as replacement for
60 # |version| and |release|, also used in various other places throughout the
63 # In a normal build, version and release are are set to KERNELVERSION and
64 # KERNELRELEASE, respectively, from the Makefile via Sphinx command line
67 # The following code tries to extract the information by reading the Makefile,
68 # when Sphinx is run directly (e.g. by Read the Docs).
70 makefile_version
= None
71 makefile_patchlevel
= None
72 for line
in open('../Makefile'):
73 key
, val
= [x
.strip() for x
in line
.split('=', 2)]
75 makefile_version
= val
76 elif key
== 'PATCHLEVEL':
77 makefile_patchlevel
= val
78 if makefile_version
and makefile_patchlevel
:
83 if makefile_version
and makefile_patchlevel
:
84 version
= release
= makefile_version
+ '.' + makefile_patchlevel
86 sys
.stderr
.write('Warning: Could not extract kernel version\n')
87 version
= release
= "unknown version"
89 # The language for content autogenerated by Sphinx. Refer to documentation
90 # for a list of supported languages.
92 # This is also used if you do content translation via gettext catalogs.
93 # Usually you set "language" from the command line for these cases.
96 # There are two options for replacing |today|: either, you set today to some
97 # non-false value, then it is used:
99 # Else, today_fmt is used as the format for a strftime call.
100 #today_fmt = '%B %d, %Y'
102 # List of patterns, relative to source directory, that match files and
103 # directories to ignore when looking for source files.
104 exclude_patterns
= ['output']
106 # The reST default role (used for this markup: `text`) to use for all
110 # If true, '()' will be appended to :func: etc. cross-reference text.
111 #add_function_parentheses = True
113 # If true, the current module name will be prepended to all description
114 # unit titles (such as .. function::).
115 #add_module_names = True
117 # If true, sectionauthor and moduleauthor directives will be shown in the
118 # output. They are ignored by default.
119 #show_authors = False
121 # The name of the Pygments (syntax highlighting) style to use.
122 pygments_style
= 'sphinx'
124 # A list of ignored prefixes for module index sorting.
125 #modindex_common_prefix = []
127 # If true, keep warnings as "system message" paragraphs in the built documents.
128 #keep_warnings = False
130 # If true, `todo` and `todoList` produce output, else they produce nothing.
131 todo_include_todos
= False
134 highlight_language
= 'C'
136 # -- Options for HTML output ----------------------------------------------
138 # The theme to use for HTML and HTML Help pages. See the documentation for
139 # a list of builtin themes.
141 # The Read the Docs theme is available from
142 # - https://github.com/snide/sphinx_rtd_theme
143 # - https://pypi.python.org/pypi/sphinx_rtd_theme
144 # - python-sphinx-rtd-theme package (on Debian)
146 import sphinx_rtd_theme
147 html_theme
= 'sphinx_rtd_theme'
148 html_theme_path
= [sphinx_rtd_theme
.get_html_theme_path()]
150 sys
.stderr
.write('Warning: The Sphinx \'sphinx_rtd_theme\' HTML theme was not found. Make sure you have the theme installed to produce pretty HTML output. Falling back to the default theme.\n')
152 # Theme options are theme-specific and customize the look and feel of a theme
153 # further. For a list of options available for each theme, see the
155 #html_theme_options = {}
157 # Add any paths that contain custom themes here, relative to this directory.
158 #html_theme_path = []
160 # The name for this set of Sphinx documents. If None, it defaults to
161 # "<project> v<release> documentation".
164 # A shorter title for the navigation bar. Default is the same as html_title.
165 #html_short_title = None
167 # The name of an image file (relative to this directory) to place at the top
171 # The name of an image file (within the static path) to use as favicon of the
172 # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
176 # Add any paths that contain custom static files (such as style sheets) here,
177 # relative to this directory. They are copied after the builtin static files,
178 # so a file named "default.css" will overwrite the builtin "default.css".
180 html_static_path
= ['sphinx-static']
184 '_static/theme_overrides.css',
188 # Add any extra paths that contain custom files (such as robots.txt or
189 # .htaccess) here, relative to this directory. These files are copied
190 # directly to the root of the documentation.
191 #html_extra_path = []
193 # If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
194 # using the given strftime format.
195 #html_last_updated_fmt = '%b %d, %Y'
197 # If true, SmartyPants will be used to convert quotes and dashes to
198 # typographically correct entities.
199 #html_use_smartypants = True
201 # Custom sidebar templates, maps document names to template names.
204 # Additional templates that should be rendered to pages, maps page names to
206 #html_additional_pages = {}
208 # If false, no module index is generated.
209 #html_domain_indices = True
211 # If false, no index is generated.
212 #html_use_index = True
214 # If true, the index is split into individual pages for each letter.
215 #html_split_index = False
217 # If true, links to the reST sources are added to the pages.
218 #html_show_sourcelink = True
220 # If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
221 #html_show_sphinx = True
223 # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
224 #html_show_copyright = True
226 # If true, an OpenSearch description file will be output, and all pages will
227 # contain a <link> tag referring to it. The value of this option must be the
228 # base URL from which the finished HTML is served.
229 #html_use_opensearch = ''
231 # This is the file name suffix for HTML files (e.g. ".xhtml").
232 #html_file_suffix = None
234 # Language to be used for generating the HTML full-text search index.
235 # Sphinx supports the following languages:
236 # 'da', 'de', 'en', 'es', 'fi', 'fr', 'h', 'it', 'ja'
237 # 'nl', 'no', 'pt', 'ro', 'r', 'sv', 'tr'
238 #html_search_language = 'en'
240 # A dictionary with options for the search language support, empty by default.
241 # Now only 'ja' uses this config value
242 #html_search_options = {'type': 'default'}
244 # The name of a javascript file (relative to the configuration directory) that
245 # implements a search results scorer. If empty, the default will be used.
246 #html_search_scorer = 'scorer.js'
248 # Output file base name for HTML help builder.
249 htmlhelp_basename
= 'TheLinuxKerneldoc'
251 # -- Options for LaTeX output ---------------------------------------------
254 # The paper size ('letterpaper' or 'a4paper').
255 #'papersize': 'letterpaper',
257 # The font size ('10pt', '11pt' or '12pt').
258 #'pointsize': '10pt',
260 # Additional stuff for the LaTeX preamble.
263 # Latex figure (float) alignment
264 #'figure_align': 'htbp',
267 # Grouping the document tree into LaTeX files. List of tuples
268 # (source start file, target name, title,
269 # author, documentclass [howto, manual, or own class]).
271 (master_doc
, 'TheLinuxKernel.tex', 'The Linux Kernel Documentation',
272 'The kernel development community', 'manual'),
275 # The name of an image file (relative to this directory) to place at the top of
279 # For "manual" documents, if this is true, then toplevel headings are parts,
281 #latex_use_parts = False
283 # If true, show page references after internal links.
284 #latex_show_pagerefs = False
286 # If true, show URL addresses after external links.
287 #latex_show_urls = False
289 # Documents to append as an appendix to all manuals.
290 #latex_appendices = []
292 # If false, no module index is generated.
293 #latex_domain_indices = True
296 # -- Options for manual page output ---------------------------------------
298 # One entry per manual page. List of tuples
299 # (source start file, name, description, authors, manual section).
301 (master_doc
, 'thelinuxkernel', 'The Linux Kernel Documentation',
305 # If true, show URL addresses after external links.
306 #man_show_urls = False
309 # -- Options for Texinfo output -------------------------------------------
311 # Grouping the document tree into Texinfo files. List of tuples
312 # (source start file, target name, title, author,
313 # dir menu entry, description, category)
314 texinfo_documents
= [
315 (master_doc
, 'TheLinuxKernel', 'The Linux Kernel Documentation',
316 author
, 'TheLinuxKernel', 'One line description of project.',
320 # Documents to append as an appendix to all manuals.
321 #texinfo_appendices = []
323 # If false, no module index is generated.
324 #texinfo_domain_indices = True
326 # How to display URL addresses: 'footnote', 'no', or 'inline'.
327 #texinfo_show_urls = 'footnote'
329 # If true, do not generate a @detailmenu in the "Top" node's menu.
330 #texinfo_no_detailmenu = False
333 # -- Options for Epub output ----------------------------------------------
335 # Bibliographic Dublin Core info.
338 epub_publisher
= author
339 epub_copyright
= copyright
341 # The basename for the epub file. It defaults to the project name.
342 #epub_basename = project
344 # The HTML theme for the epub output. Since the default themes are not
345 # optimized for small screen space, using the same theme for HTML and epub
346 # output is usually not wise. This defaults to 'epub', a theme designed to save
350 # The language of the text. It defaults to the language option
351 # or 'en' if the language is not set.
354 # The scheme of the identifier. Typical schemes are ISBN or URL.
357 # The unique identifier of the text. This can be a ISBN number
358 # or the project homepage.
359 #epub_identifier = ''
361 # A unique identification for the text.
364 # A tuple containing the cover image and cover page html template filenames.
367 # A sequence of (type, uri, title) tuples for the guide element of content.opf.
370 # HTML files that should be inserted before the pages created by sphinx.
371 # The format is a list of tuples containing the path and title.
374 # HTML files that should be inserted after the pages created by sphinx.
375 # The format is a list of tuples containing the path and title.
376 #epub_post_files = []
378 # A list of files that should not be packed into the epub file.
379 epub_exclude_files
= ['search.html']
381 # The depth of the table of contents in toc.ncx.
384 # Allow duplicate toc entries.
387 # Choose between 'default' and 'includehidden'.
388 #epub_tocscope = 'default'
390 # Fix unsupported image types using the Pillow.
391 #epub_fix_images = False
393 # Scale large images.
394 #epub_max_image_width = 0
396 # How to display URL addresses: 'footnote', 'no', or 'inline'.
397 #epub_show_urls = 'inline'
399 # If false, no index is generated.
400 #epub_use_index = True
405 # Grouping the document tree into PDF files. List of tuples
406 # (source start file, target name, title, author, options).
408 # See the Sphinx chapter of http://ralsina.me/static/manual.pdf
410 # FIXME: Do not add the index file here; the result will be too big. Adding
411 # multiple PDF files here actually tries to get the cross-referencing right
412 # *between* PDF files.
414 ('kernel-documentation', u
'Kernel', u
'Kernel', u
'J. Random Bozo'),
417 # kernel-doc extension configuration for running Sphinx directly (e.g. by Read
418 # the Docs). In a normal build, these are supplied from the Makefile via command
420 kerneldoc_bin
= '../scripts/kernel-doc'
421 kerneldoc_srctree
= '..'