blob: a05225056e086a5feec61395ff116aae3895b865 [file] [log] [blame]
Jani Nikula22cba312016-05-19 15:14:05 +03001# -*- coding: utf-8 -*-
2#
3# The Linux Kernel documentation build configuration file, created by
4# sphinx-quickstart on Fri Feb 12 13:51:46 2016.
5#
6# This file is execfile()d with the current directory set to its
7# containing dir.
8#
9# Note that not all possible configuration values are present in this
10# autogenerated file.
11#
12# All configuration values have a default; values that are commented out
13# serve to show the default.
14
15import sys
16import os
Mauro Carvalho Chehabd4fe7e12016-08-16 13:25:43 -030017import sphinx
18
Mauro Carvalho Chehabe0de2b52019-07-14 07:16:18 -030019from subprocess import check_output
20
Mauro Carvalho Chehabd4fe7e12016-08-16 13:25:43 -030021# Get Sphinx version
Rémy Léonec46988a2017-03-20 16:37:49 +010022major, minor, patch = sphinx.version_info[:3]
Mauro Carvalho Chehabd4fe7e12016-08-16 13:25:43 -030023
Jani Nikula22cba312016-05-19 15:14:05 +030024
25# If extensions (or modules to document with autodoc) are in another directory,
26# add these directories to sys.path here. If the directory is relative to the
27# documentation root, use os.path.abspath to make it absolute, like shown here.
Jani Nikula24dcdeb2016-05-20 11:51:47 +030028sys.path.insert(0, os.path.abspath('sphinx'))
Markus Heiser606b9ac2016-08-13 16:12:42 +020029from load_config import loadConfig
Jani Nikula22cba312016-05-19 15:14:05 +030030
31# -- General configuration ------------------------------------------------
32
33# If your documentation needs a minimal Sphinx version, state it here.
Jonathan Corbetf546ff02021-02-01 16:26:25 -070034needs_sphinx = '1.7'
Jani Nikula22cba312016-05-19 15:14:05 +030035
36# Add any Sphinx extension module names here, as strings. They can be
37# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
38# ones.
Jonathan Corbetafde7062020-09-04 10:13:45 -060039extensions = ['kerneldoc', 'rstFlatTable', 'kernel_include',
Kees Cookaa204852019-10-01 11:25:32 -070040 'kfigure', 'sphinx.ext.ifconfig', 'automarkup',
Mauro Carvalho Chehaba7ee04b2020-10-30 08:40:36 +010041 'maintainers_include', 'sphinx.ext.autosectionlabel',
Mauro Carvalho Chehab63fdc462020-11-30 16:36:34 +010042 'kernel_abi', 'kernel_feat']
Jani Nikula22cba312016-05-19 15:14:05 +030043
Jonathan Corbetafde7062020-09-04 10:13:45 -060044#
45# cdomain is badly broken in Sphinx 3+. Leaving it out generates *most*
46# of the docs correctly, but not all. Scream bloody murder but allow
47# the process to proceed; hopefully somebody will fix this properly soon.
48#
49if major >= 3:
50 sys.stderr.write('''WARNING: The kernel documentation build process
Mauro Carvalho Chehab14059a32020-09-30 10:14:07 +020051 support for Sphinx v3.0 and above is brand new. Be prepared for
Matthew Wilcox36d89002021-02-15 16:17:57 +000052 possible issues in the generated output.\n''')
Mauro Carvalho Chehabd29f34c2020-10-27 10:51:06 +010053 if (major > 3) or (minor > 0 or patch >= 2):
Mauro Carvalho Chehabb34b86d2020-09-28 09:42:44 +020054 # Sphinx c function parser is more pedantic with regards to type
55 # checking. Due to that, having macros at c:function cause problems.
56 # Those needed to be scaped by using c_id_attributes[] array
57 c_id_attributes = [
58 # GCC Compiler types not parsed by Sphinx:
59 "__restrict__",
60
61 # include/linux/compiler_types.h:
62 "__iomem",
63 "__kernel",
64 "noinstr",
65 "notrace",
66 "__percpu",
67 "__rcu",
68 "__user",
69
70 # include/linux/compiler_attributes.h:
71 "__alias",
72 "__aligned",
73 "__aligned_largest",
74 "__always_inline",
75 "__assume_aligned",
76 "__cold",
77 "__attribute_const__",
78 "__copy",
79 "__pure",
80 "__designated_init",
81 "__visible",
82 "__printf",
83 "__scanf",
84 "__gnu_inline",
85 "__malloc",
86 "__mode",
87 "__no_caller_saved_registers",
88 "__noclone",
89 "__nonstring",
90 "__noreturn",
91 "__packed",
92 "__pure",
93 "__section",
94 "__always_unused",
95 "__maybe_unused",
96 "__used",
97 "__weak",
98 "noinline",
99
100 # include/linux/memblock.h:
101 "__init_memblock",
102 "__meminit",
103
104 # include/linux/init.h:
105 "__init",
106 "__ref",
107
108 # include/linux/linkage.h:
109 "asmlinkage",
110 ]
111
Jonathan Corbetafde7062020-09-04 10:13:45 -0600112else:
113 extensions.append('cdomain')
114
Mauro Carvalho Chehab4658b0e2020-03-20 16:11:03 +0100115# Ensure that autosectionlabel will produce unique names
116autosectionlabel_prefix_document = True
117autosectionlabel_maxdepth = 2
118
Jonathan Corbetf546ff02021-02-01 16:26:25 -0700119extensions.append("sphinx.ext.imgmath")
Jani Nikula22cba312016-05-19 15:14:05 +0300120
121# Add any paths that contain templates here, relative to this directory.
122templates_path = ['_templates']
123
124# The suffix(es) of source filenames.
125# You can specify multiple suffix as a list of string:
126# source_suffix = ['.rst', '.md']
127source_suffix = '.rst'
128
129# The encoding of source files.
130#source_encoding = 'utf-8-sig'
131
132# The master toctree document.
133master_doc = 'index'
134
135# General information about the project.
136project = 'The Linux Kernel'
Jonathan Corbetdc361432017-02-06 11:52:19 -0700137copyright = 'The kernel development community'
Jani Nikula22cba312016-05-19 15:14:05 +0300138author = 'The kernel development community'
139
140# The version info for the project you're documenting, acts as replacement for
141# |version| and |release|, also used in various other places throughout the
142# built documents.
143#
Jani Nikulac13ce442016-05-28 15:25:41 +0300144# In a normal build, version and release are are set to KERNELVERSION and
145# KERNELRELEASE, respectively, from the Makefile via Sphinx command line
146# arguments.
147#
148# The following code tries to extract the information by reading the Makefile,
149# when Sphinx is run directly (e.g. by Read the Docs).
150try:
151 makefile_version = None
152 makefile_patchlevel = None
153 for line in open('../Makefile'):
154 key, val = [x.strip() for x in line.split('=', 2)]
155 if key == 'VERSION':
156 makefile_version = val
157 elif key == 'PATCHLEVEL':
158 makefile_patchlevel = val
159 if makefile_version and makefile_patchlevel:
160 break
161except:
162 pass
163finally:
164 if makefile_version and makefile_patchlevel:
165 version = release = makefile_version + '.' + makefile_patchlevel
166 else:
Jani Nikulac13ce442016-05-28 15:25:41 +0300167 version = release = "unknown version"
Jani Nikula22cba312016-05-19 15:14:05 +0300168
169# The language for content autogenerated by Sphinx. Refer to documentation
170# for a list of supported languages.
171#
172# This is also used if you do content translation via gettext catalogs.
173# Usually you set "language" from the command line for these cases.
174language = None
175
176# There are two options for replacing |today|: either, you set today to some
177# non-false value, then it is used:
178#today = ''
179# Else, today_fmt is used as the format for a strftime call.
180#today_fmt = '%B %d, %Y'
181
182# List of patterns, relative to source directory, that match files and
183# directories to ignore when looking for source files.
184exclude_patterns = ['output']
185
186# The reST default role (used for this markup: `text`) to use for all
187# documents.
188#default_role = None
189
190# If true, '()' will be appended to :func: etc. cross-reference text.
191#add_function_parentheses = True
192
193# If true, the current module name will be prepended to all description
194# unit titles (such as .. function::).
195#add_module_names = True
196
197# If true, sectionauthor and moduleauthor directives will be shown in the
198# output. They are ignored by default.
199#show_authors = False
200
201# The name of the Pygments (syntax highlighting) style to use.
202pygments_style = 'sphinx'
203
204# A list of ignored prefixes for module index sorting.
205#modindex_common_prefix = []
206
207# If true, keep warnings as "system message" paragraphs in the built documents.
208#keep_warnings = False
209
210# If true, `todo` and `todoList` produce output, else they produce nothing.
211todo_include_todos = False
212
John Keepingfd5d6662017-03-03 12:24:05 +0000213primary_domain = 'c'
Jani Nikulab4591062016-11-03 10:26:54 +0200214highlight_language = 'none'
Jani Nikula22cba312016-05-19 15:14:05 +0300215
216# -- Options for HTML output ----------------------------------------------
217
218# The theme to use for HTML and HTML Help pages. See the documentation for
219# a list of builtin themes.
220
221# The Read the Docs theme is available from
222# - https://github.com/snide/sphinx_rtd_theme
223# - https://pypi.python.org/pypi/sphinx_rtd_theme
224# - python-sphinx-rtd-theme package (on Debian)
225try:
226 import sphinx_rtd_theme
227 html_theme = 'sphinx_rtd_theme'
228 html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
229except ImportError:
230 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')
231
232# Theme options are theme-specific and customize the look and feel of a theme
233# further. For a list of options available for each theme, see the
234# documentation.
235#html_theme_options = {}
236
237# Add any paths that contain custom themes here, relative to this directory.
238#html_theme_path = []
239
240# The name for this set of Sphinx documents. If None, it defaults to
241# "<project> v<release> documentation".
242#html_title = None
243
244# A shorter title for the navigation bar. Default is the same as html_title.
245#html_short_title = None
246
247# The name of an image file (relative to this directory) to place at the top
248# of the sidebar.
249#html_logo = None
250
251# The name of an image file (within the static path) to use as favicon of the
252# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
253# pixels large.
254#html_favicon = None
255
256# Add any paths that contain custom static files (such as style sheets) here,
257# relative to this directory. They are copied after the builtin static files,
258# so a file named "default.css" will overwrite the builtin "default.css".
Markus Heiserbc214672016-07-03 10:05:28 +0200259
260html_static_path = ['sphinx-static']
261
262html_context = {
263 'css_files': [
264 '_static/theme_overrides.css',
265 ],
266}
Jani Nikula22cba312016-05-19 15:14:05 +0300267
268# Add any extra paths that contain custom files (such as robots.txt or
269# .htaccess) here, relative to this directory. These files are copied
270# directly to the root of the documentation.
271#html_extra_path = []
272
273# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
274# using the given strftime format.
275#html_last_updated_fmt = '%b %d, %Y'
276
277# If true, SmartyPants will be used to convert quotes and dashes to
278# typographically correct entities.
Stephen Kitt7282a932019-06-28 20:38:41 +0200279html_use_smartypants = False
Jani Nikula22cba312016-05-19 15:14:05 +0300280
281# Custom sidebar templates, maps document names to template names.
282#html_sidebars = {}
283
284# Additional templates that should be rendered to pages, maps page names to
285# template names.
286#html_additional_pages = {}
287
288# If false, no module index is generated.
289#html_domain_indices = True
290
291# If false, no index is generated.
292#html_use_index = True
293
294# If true, the index is split into individual pages for each letter.
295#html_split_index = False
296
297# If true, links to the reST sources are added to the pages.
298#html_show_sourcelink = True
299
300# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
301#html_show_sphinx = True
302
303# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
304#html_show_copyright = True
305
306# If true, an OpenSearch description file will be output, and all pages will
307# contain a <link> tag referring to it. The value of this option must be the
308# base URL from which the finished HTML is served.
309#html_use_opensearch = ''
310
311# This is the file name suffix for HTML files (e.g. ".xhtml").
312#html_file_suffix = None
313
314# Language to be used for generating the HTML full-text search index.
315# Sphinx supports the following languages:
316# 'da', 'de', 'en', 'es', 'fi', 'fr', 'h', 'it', 'ja'
317# 'nl', 'no', 'pt', 'ro', 'r', 'sv', 'tr'
318#html_search_language = 'en'
319
320# A dictionary with options for the search language support, empty by default.
321# Now only 'ja' uses this config value
322#html_search_options = {'type': 'default'}
323
324# The name of a javascript file (relative to the configuration directory) that
325# implements a search results scorer. If empty, the default will be used.
326#html_search_scorer = 'scorer.js'
327
328# Output file base name for HTML help builder.
329htmlhelp_basename = 'TheLinuxKerneldoc'
330
331# -- Options for LaTeX output ---------------------------------------------
332
333latex_elements = {
Mauro Carvalho Chehab3b4c9632021-03-03 16:58:00 +0100334 # The paper size ('letterpaper' or 'a4paper').
335 'papersize': 'a4paper',
Jani Nikula22cba312016-05-19 15:14:05 +0300336
Mauro Carvalho Chehab3b4c9632021-03-03 16:58:00 +0100337 # The font size ('10pt', '11pt' or '12pt').
338 'pointsize': '11pt',
Jani Nikula22cba312016-05-19 15:14:05 +0300339
Mauro Carvalho Chehab3b4c9632021-03-03 16:58:00 +0100340 # Latex figure (float) alignment
341 #'figure_align': 'htbp',
Mauro Carvalho Chehabcaee5cd2016-08-16 13:25:37 -0300342
Mauro Carvalho Chehab3b4c9632021-03-03 16:58:00 +0100343 # Don't mangle with UTF-8 chars
344 'inputenc': '',
345 'utf8extra': '',
Mauro Carvalho Chehaba682ec42016-08-16 13:25:39 -0300346
Mauro Carvalho Chehab3b4c9632021-03-03 16:58:00 +0100347 # Set document margins
348 'sphinxsetup': '''
349 hmargin=0.5in, vmargin=1in,
350 parsedliteralwraps=true,
351 verbatimhintsturnover=false,
352 ''',
353
354 # Additional stuff for the LaTeX preamble.
Mauro Carvalho Chehabcaee5cd2016-08-16 13:25:37 -0300355 'preamble': '''
Akira Yokosawa0afd4df2021-05-30 00:19:14 +0900356 % Prevent column squeezing of tabulary.
357 \\setlength{\\tymin}{20em}
Mauro Carvalho Chehab3b4c9632021-03-03 16:58:00 +0100358 % Use some font with UTF-8 support with XeLaTeX
Mauro Carvalho Chehab9fdcd6a2017-09-03 16:12:46 -0300359 \\usepackage{fontspec}
Darrick J. Wong44ba0bb2018-10-04 18:06:03 -0700360 \\setsansfont{DejaVu Sans}
361 \\setromanfont{DejaVu Serif}
Mauro Carvalho Chehab9fdcd6a2017-09-03 16:12:46 -0300362 \\setmonofont{DejaVu Sans Mono}
Mauro Carvalho Chehab3b4c9632021-03-03 16:58:00 +0100363 ''',
Mauro Carvalho Chehabe0de2b52019-07-14 07:16:18 -0300364}
Mauro Carvalho Chehab9fdcd6a2017-09-03 16:12:46 -0300365
Mauro Carvalho Chehabe0de2b52019-07-14 07:16:18 -0300366# At least one book (translations) may have Asian characters
367# with are only displayed if xeCJK is used
368
369cjk_cmd = check_output(['fc-list', '--format="%{family[0]}\n"']).decode('utf-8', 'ignore')
370if cjk_cmd.find("Noto Sans CJK SC") >= 0:
371 print ("enabling CJK for LaTeX builder")
372 latex_elements['preamble'] += '''
Mauro Carvalho Chehab24889da2019-07-09 15:14:17 -0300373 % This is needed for translations
374 \\usepackage{xeCJK}
375 \\setCJKmainfont{Noto Sans CJK SC}
Akira Yokosawaf7ebe6b2021-05-26 00:25:39 +0900376 % Define custom macros to on/off CJK
377 \\newcommand{\\kerneldocCJKon}{\\makexeCJKactive}
378 \\newcommand{\\kerneldocCJKoff}{\\makexeCJKinactive}
379 % To customize \sphinxtableofcontents
380 \\usepackage{etoolbox}
381 % Inactivate CJK after tableofcontents
382 \\apptocmd{\\sphinxtableofcontents}{\\kerneldocCJKoff}{}{}
383 '''
384else:
385 latex_elements['preamble'] += '''
386 % Custom macros to on/off CJK (Dummy)
387 \\newcommand{\\kerneldocCJKon}{}
388 \\newcommand{\\kerneldocCJKoff}{}
Mauro Carvalho Chehab9fdcd6a2017-09-03 16:12:46 -0300389 '''
Mauro Carvalho Chehab9fdcd6a2017-09-03 16:12:46 -0300390
391# Fix reference escape troubles with Sphinx 1.4.x
Jonathan Corbetf546ff02021-02-01 16:26:25 -0700392if major == 1:
Mauro Carvalho Chehab9fdcd6a2017-09-03 16:12:46 -0300393 latex_elements['preamble'] += '\\renewcommand*{\\DUrole}[2]{ #2 }\n'
394
Mauro Carvalho Chehab9fdcd6a2017-09-03 16:12:46 -0300395# With Sphinx 1.6, it is possible to change the Bg color directly
396# by using:
397# \definecolor{sphinxnoteBgColor}{RGB}{204,255,255}
398# \definecolor{sphinxwarningBgColor}{RGB}{255,204,204}
399# \definecolor{sphinxattentionBgColor}{RGB}{255,255,204}
400# \definecolor{sphinximportantBgColor}{RGB}{192,255,204}
401#
402# However, it require to use sphinx heavy box with:
403#
404# \renewenvironment{sphinxlightbox} {%
405# \\begin{sphinxheavybox}
406# }
407# \\end{sphinxheavybox}
408# }
409#
410# Unfortunately, the implementation is buggy: if a note is inside a
411# table, it isn't displayed well. So, for now, let's use boring
412# black and white notes.
Mauro Carvalho Chehab633d6122017-06-19 07:49:06 -0300413
Jani Nikula22cba312016-05-19 15:14:05 +0300414# Grouping the document tree into LaTeX files. List of tuples
415# (source start file, target name, title,
416# author, documentclass [howto, manual, or own class]).
Mauro Carvalho Chehabc2b563d2017-05-12 06:02:12 -0300417# Sorted in alphabetical order
Jani Nikula22cba312016-05-19 15:14:05 +0300418latex_documents = [
Jani Nikula22cba312016-05-19 15:14:05 +0300419]
420
Mauro Carvalho Chehab9d42afb2019-07-09 06:52:36 -0300421# Add all other index files from Documentation/ subdirectories
422for fn in os.listdir('.'):
423 doc = os.path.join(fn, "index")
424 if os.path.exists(doc + ".rst"):
425 has = False
426 for l in latex_documents:
427 if l[0] == doc:
428 has = True
429 break
430 if not has:
431 latex_documents.append((doc, fn + '.tex',
432 'Linux %s Documentation' % fn.capitalize(),
433 'The kernel development community',
434 'manual'))
435
Jani Nikula22cba312016-05-19 15:14:05 +0300436# The name of an image file (relative to this directory) to place at the top of
437# the title page.
438#latex_logo = None
439
440# For "manual" documents, if this is true, then toplevel headings are parts,
441# not chapters.
442#latex_use_parts = False
443
444# If true, show page references after internal links.
445#latex_show_pagerefs = False
446
447# If true, show URL addresses after external links.
448#latex_show_urls = False
449
450# Documents to append as an appendix to all manuals.
451#latex_appendices = []
452
453# If false, no module index is generated.
454#latex_domain_indices = True
455
456
457# -- Options for manual page output ---------------------------------------
458
459# One entry per manual page. List of tuples
460# (source start file, name, description, authors, manual section).
461man_pages = [
462 (master_doc, 'thelinuxkernel', 'The Linux Kernel Documentation',
463 [author], 1)
464]
465
466# If true, show URL addresses after external links.
467#man_show_urls = False
468
469
470# -- Options for Texinfo output -------------------------------------------
471
472# Grouping the document tree into Texinfo files. List of tuples
473# (source start file, target name, title, author,
474# dir menu entry, description, category)
475texinfo_documents = [
476 (master_doc, 'TheLinuxKernel', 'The Linux Kernel Documentation',
477 author, 'TheLinuxKernel', 'One line description of project.',
478 'Miscellaneous'),
479]
480
481# Documents to append as an appendix to all manuals.
482#texinfo_appendices = []
483
484# If false, no module index is generated.
485#texinfo_domain_indices = True
486
487# How to display URL addresses: 'footnote', 'no', or 'inline'.
488#texinfo_show_urls = 'footnote'
489
490# If true, do not generate a @detailmenu in the "Top" node's menu.
491#texinfo_no_detailmenu = False
492
493
494# -- Options for Epub output ----------------------------------------------
495
496# Bibliographic Dublin Core info.
497epub_title = project
498epub_author = author
499epub_publisher = author
500epub_copyright = copyright
501
502# The basename for the epub file. It defaults to the project name.
503#epub_basename = project
504
505# The HTML theme for the epub output. Since the default themes are not
506# optimized for small screen space, using the same theme for HTML and epub
507# output is usually not wise. This defaults to 'epub', a theme designed to save
508# visual space.
509#epub_theme = 'epub'
510
511# The language of the text. It defaults to the language option
512# or 'en' if the language is not set.
513#epub_language = ''
514
515# The scheme of the identifier. Typical schemes are ISBN or URL.
516#epub_scheme = ''
517
518# The unique identifier of the text. This can be a ISBN number
519# or the project homepage.
520#epub_identifier = ''
521
522# A unique identification for the text.
523#epub_uid = ''
524
525# A tuple containing the cover image and cover page html template filenames.
526#epub_cover = ()
527
528# A sequence of (type, uri, title) tuples for the guide element of content.opf.
529#epub_guide = ()
530
531# HTML files that should be inserted before the pages created by sphinx.
532# The format is a list of tuples containing the path and title.
533#epub_pre_files = []
534
535# HTML files that should be inserted after the pages created by sphinx.
536# The format is a list of tuples containing the path and title.
537#epub_post_files = []
538
539# A list of files that should not be packed into the epub file.
540epub_exclude_files = ['search.html']
541
542# The depth of the table of contents in toc.ncx.
543#epub_tocdepth = 3
544
545# Allow duplicate toc entries.
546#epub_tocdup = True
547
548# Choose between 'default' and 'includehidden'.
549#epub_tocscope = 'default'
550
551# Fix unsupported image types using the Pillow.
552#epub_fix_images = False
553
554# Scale large images.
555#epub_max_image_width = 0
556
557# How to display URL addresses: 'footnote', 'no', or 'inline'.
558#epub_show_urls = 'inline'
559
560# If false, no index is generated.
561#epub_use_index = True
562
563#=======
564# rst2pdf
565#
566# Grouping the document tree into PDF files. List of tuples
567# (source start file, target name, title, author, options).
568#
Alexander A. Klimov93431e02020-05-26 08:05:44 +0200569# See the Sphinx chapter of https://ralsina.me/static/manual.pdf
Jani Nikula22cba312016-05-19 15:14:05 +0300570#
571# FIXME: Do not add the index file here; the result will be too big. Adding
572# multiple PDF files here actually tries to get the cross-referencing right
573# *between* PDF files.
574pdf_documents = [
Mauro Carvalho Chehab520a24772016-07-15 07:42:08 -0300575 ('kernel-documentation', u'Kernel', u'Kernel', u'J. Random Bozo'),
Jani Nikula22cba312016-05-19 15:14:05 +0300576]
Jani Nikula24dcdeb2016-05-20 11:51:47 +0300577
578# kernel-doc extension configuration for running Sphinx directly (e.g. by Read
579# the Docs). In a normal build, these are supplied from the Makefile via command
580# line arguments.
581kerneldoc_bin = '../scripts/kernel-doc'
582kerneldoc_srctree = '..'
Markus Heiser606b9ac2016-08-13 16:12:42 +0200583
584# ------------------------------------------------------------------------------
585# Since loadConfig overwrites settings from the global namespace, it has to be
586# the last statement in the conf.py file
587# ------------------------------------------------------------------------------
588loadConfig(globals())