Linux Audio

Check our new training course

Loading...
v6.2
  1# -*- 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
 17import sphinx
 18import shutil
 19
 20# helper
 21# ------
 22
 23def have_command(cmd):
 24    """Search ``cmd`` in the ``PATH`` environment.
 25
 26    If found, return True.
 27    If not found, return False.
 28    """
 29    return shutil.which(cmd) is not None
 30
 31# Get Sphinx version
 32major, minor, patch = sphinx.version_info[:3]
 33
 34#
 35# Warn about older versions that we don't want to support for much
 36# longer.
 37#
 38if (major < 2) or (major == 2 and minor < 4):
 39    print('WARNING: support for Sphinx < 2.4 will be removed soon.')
 40
 41# If extensions (or modules to document with autodoc) are in another directory,
 42# add these directories to sys.path here. If the directory is relative to the
 43# documentation root, use os.path.abspath to make it absolute, like shown here.
 44sys.path.insert(0, os.path.abspath('sphinx'))
 45from load_config import loadConfig
 46
 47# -- General configuration ------------------------------------------------
 48
 49# If your documentation needs a minimal Sphinx version, state it here.
 50needs_sphinx = '1.7'
 51
 52# Add any Sphinx extension module names here, as strings. They can be
 53# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
 54# ones.
 55extensions = ['kerneldoc', 'rstFlatTable', 'kernel_include',
 56              'kfigure', 'sphinx.ext.ifconfig', 'automarkup',
 57              'maintainers_include', 'sphinx.ext.autosectionlabel',
 58              'kernel_abi', 'kernel_feat']
 59
 60if major >= 3:
 61    if (major > 3) or (minor > 0 or patch >= 2):
 62        # Sphinx c function parser is more pedantic with regards to type
 63        # checking. Due to that, having macros at c:function cause problems.
 64        # Those needed to be scaped by using c_id_attributes[] array
 65        c_id_attributes = [
 66            # GCC Compiler types not parsed by Sphinx:
 67            "__restrict__",
 68
 69            # include/linux/compiler_types.h:
 70            "__iomem",
 71            "__kernel",
 72            "noinstr",
 73            "notrace",
 74            "__percpu",
 75            "__rcu",
 76            "__user",
 77
 78            # include/linux/compiler_attributes.h:
 79            "__alias",
 80            "__aligned",
 81            "__aligned_largest",
 82            "__always_inline",
 83            "__assume_aligned",
 84            "__cold",
 85            "__attribute_const__",
 86            "__copy",
 87            "__pure",
 88            "__designated_init",
 89            "__visible",
 90            "__printf",
 91            "__scanf",
 92            "__gnu_inline",
 93            "__malloc",
 94            "__mode",
 95            "__no_caller_saved_registers",
 96            "__noclone",
 97            "__nonstring",
 98            "__noreturn",
 99            "__packed",
100            "__pure",
101            "__section",
102            "__always_unused",
103            "__maybe_unused",
104            "__used",
105            "__weak",
106            "noinline",
107            "__fix_address",
108
109            # include/linux/memblock.h:
110            "__init_memblock",
111            "__meminit",
112
113            # include/linux/init.h:
114            "__init",
115            "__ref",
116
117            # include/linux/linkage.h:
118            "asmlinkage",
119        ]
120
121else:
122    extensions.append('cdomain')
123
124# Ensure that autosectionlabel will produce unique names
125autosectionlabel_prefix_document = True
126autosectionlabel_maxdepth = 2
127
128# Load math renderer:
129# For html builder, load imgmath only when its dependencies are met.
130# mathjax is the default math renderer since Sphinx 1.8.
131have_latex =  have_command('latex')
132have_dvipng = have_command('dvipng')
133load_imgmath = have_latex and have_dvipng
134
135# Respect SPHINX_IMGMATH (for html docs only)
136if 'SPHINX_IMGMATH' in os.environ:
137    env_sphinx_imgmath = os.environ['SPHINX_IMGMATH']
138    if 'yes' in env_sphinx_imgmath:
139        load_imgmath = True
140    elif 'no' in env_sphinx_imgmath:
141        load_imgmath = False
142    else:
143        sys.stderr.write("Unknown env SPHINX_IMGMATH=%s ignored.\n" % env_sphinx_imgmath)
144
145# Always load imgmath for Sphinx <1.8 or for epub docs
146load_imgmath = (load_imgmath or (major == 1 and minor < 8)
147                or 'epub' in sys.argv)
148
149if load_imgmath:
150    extensions.append("sphinx.ext.imgmath")
151    math_renderer = 'imgmath'
152else:
153    math_renderer = 'mathjax'
154
155# Add any paths that contain templates here, relative to this directory.
156templates_path = ['_templates']
157
158# The suffix(es) of source filenames.
159# You can specify multiple suffix as a list of string:
160# source_suffix = ['.rst', '.md']
161source_suffix = '.rst'
162
163# The encoding of source files.
164#source_encoding = 'utf-8-sig'
165
166# The master toctree document.
167master_doc = 'index'
168
169# General information about the project.
170project = 'The Linux Kernel'
171copyright = 'The kernel development community'
172author = 'The kernel development community'
173
174# The version info for the project you're documenting, acts as replacement for
175# |version| and |release|, also used in various other places throughout the
176# built documents.
177#
178# In a normal build, version and release are are set to KERNELVERSION and
179# KERNELRELEASE, respectively, from the Makefile via Sphinx command line
180# arguments.
181#
182# The following code tries to extract the information by reading the Makefile,
183# when Sphinx is run directly (e.g. by Read the Docs).
184try:
185    makefile_version = None
186    makefile_patchlevel = None
187    for line in open('../Makefile'):
188        key, val = [x.strip() for x in line.split('=', 2)]
189        if key == 'VERSION':
190            makefile_version = val
191        elif key == 'PATCHLEVEL':
192            makefile_patchlevel = val
193        if makefile_version and makefile_patchlevel:
194            break
195except:
196    pass
197finally:
198    if makefile_version and makefile_patchlevel:
199        version = release = makefile_version + '.' + makefile_patchlevel
200    else:
 
201        version = release = "unknown version"
202
203#
204# HACK: there seems to be no easy way for us to get at the version and
205# release information passed in from the makefile...so go pawing through the
206# command-line options and find it for ourselves.
207#
208def get_cline_version():
209    c_version = c_release = ''
210    for arg in sys.argv:
211        if arg.startswith('version='):
212            c_version = arg[8:]
213        elif arg.startswith('release='):
214            c_release = arg[8:]
215    if c_version:
216        if c_release:
217            return c_version + '-' + c_release
218        return c_version
219    return version # Whatever we came up with before
220
221# The language for content autogenerated by Sphinx. Refer to documentation
222# for a list of supported languages.
223#
224# This is also used if you do content translation via gettext catalogs.
225# Usually you set "language" from the command line for these cases.
226language = 'en'
227
228# There are two options for replacing |today|: either, you set today to some
229# non-false value, then it is used:
230#today = ''
231# Else, today_fmt is used as the format for a strftime call.
232#today_fmt = '%B %d, %Y'
233
234# List of patterns, relative to source directory, that match files and
235# directories to ignore when looking for source files.
236exclude_patterns = ['output']
237
238# The reST default role (used for this markup: `text`) to use for all
239# documents.
240#default_role = None
241
242# If true, '()' will be appended to :func: etc. cross-reference text.
243#add_function_parentheses = True
244
245# If true, the current module name will be prepended to all description
246# unit titles (such as .. function::).
247#add_module_names = True
248
249# If true, sectionauthor and moduleauthor directives will be shown in the
250# output. They are ignored by default.
251#show_authors = False
252
253# The name of the Pygments (syntax highlighting) style to use.
254pygments_style = 'sphinx'
255
256# A list of ignored prefixes for module index sorting.
257#modindex_common_prefix = []
258
259# If true, keep warnings as "system message" paragraphs in the built documents.
260#keep_warnings = False
261
262# If true, `todo` and `todoList` produce output, else they produce nothing.
263todo_include_todos = False
264
265primary_domain = 'c'
266highlight_language = 'none'
267
268# -- Options for HTML output ----------------------------------------------
269
270# The theme to use for HTML and HTML Help pages.  See the documentation for
271# a list of builtin themes.
272
273# Default theme
274html_theme = 'alabaster'
275html_css_files = []
276
277if "DOCS_THEME" in os.environ:
278    html_theme = os.environ["DOCS_THEME"]
279
280if html_theme == 'sphinx_rtd_theme' or html_theme == 'sphinx_rtd_dark_mode':
281    # Read the Docs theme
282    try:
283        import sphinx_rtd_theme
284        html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
285
286        # Add any paths that contain custom static files (such as style sheets) here,
287        # relative to this directory. They are copied after the builtin static files,
288        # so a file named "default.css" will overwrite the builtin "default.css".
289        html_css_files = [
290            'theme_overrides.css',
291        ]
292
293        # Read the Docs dark mode override theme
294        if html_theme == 'sphinx_rtd_dark_mode':
295            try:
296                import sphinx_rtd_dark_mode
297                extensions.append('sphinx_rtd_dark_mode')
298            except ImportError:
299                html_theme == 'sphinx_rtd_theme'
300
301        if html_theme == 'sphinx_rtd_theme':
302                # Add color-specific RTD normal mode
303                html_css_files.append('theme_rtd_colors.css')
304
305        html_theme_options = {
306            'navigation_depth': -1,
307        }
308
309    except ImportError:
310        html_theme = 'alabaster'
311
312if "DOCS_CSS" in os.environ:
313    css = os.environ["DOCS_CSS"].split(" ")
314
315    for l in css:
316        html_css_files.append(l)
317
318if major <= 1 and minor < 8:
319    html_context = {
320        'css_files': [],
321    }
322
323    for l in html_css_files:
324        html_context['css_files'].append('_static/' + l)
325
326if  html_theme == 'alabaster':
327    html_theme_options = {
328        'description': get_cline_version(),
329        'page_width': '65em',
330        'sidebar_width': '15em',
331        'font_size': 'inherit',
332        'font_family': 'serif',
333    }
334
335sys.stderr.write("Using %s theme\n" % html_theme)
336
337# Add any paths that contain custom static files (such as style sheets) here,
338# relative to this directory. They are copied after the builtin static files,
339# so a file named "default.css" will overwrite the builtin "default.css".
 
340html_static_path = ['sphinx-static']
341
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
342# If true, SmartyPants will be used to convert quotes and dashes to
343# typographically correct entities.
344html_use_smartypants = False
345
346# Custom sidebar templates, maps document names to template names.
347# Note that the RTD theme ignores this
348html_sidebars = { '**': ['searchbox.html', 'localtoc.html', 'sourcelink.html']}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
349
350# about.html is available for alabaster theme. Add it at the front.
351if html_theme == 'alabaster':
352    html_sidebars['**'].insert(0, 'about.html')
 
 
 
 
 
 
 
 
 
 
353
354# Output file base name for HTML help builder.
355htmlhelp_basename = 'TheLinuxKerneldoc'
356
357# -- Options for LaTeX output ---------------------------------------------
358
359latex_elements = {
360    # The paper size ('letterpaper' or 'a4paper').
361    'papersize': 'a4paper',
362
363    # The font size ('10pt', '11pt' or '12pt').
364    'pointsize': '11pt',
365
366    # Latex figure (float) alignment
367    #'figure_align': 'htbp',
368
369    # Don't mangle with UTF-8 chars
370    'inputenc': '',
371    'utf8extra': '',
372
373    # Set document margins
374    'sphinxsetup': '''
375        hmargin=0.5in, vmargin=1in,
376        parsedliteralwraps=true,
377        verbatimhintsturnover=false,
378    ''',
379
380    # For CJK One-half spacing, need to be in front of hyperref
381    'extrapackages': r'\usepackage{setspace}',
 
382
383    # Additional stuff for the LaTeX preamble.
384    'preamble': '''
385        % Use some font with UTF-8 support with XeLaTeX
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
386        \\usepackage{fontspec}
387        \\setsansfont{DejaVu Sans}
388        \\setromanfont{DejaVu Serif}
389        \\setmonofont{DejaVu Sans Mono}
390    ''',
 
 
 
 
391}
392
393# Fix reference escape troubles with Sphinx 1.4.x
394if major == 1:
395    latex_elements['preamble']  += '\\renewcommand*{\\DUrole}[2]{ #2 }\n'
396
397
398# Load kerneldoc specific LaTeX settings
399latex_elements['preamble'] += '''
400        % Load kerneldoc specific LaTeX settings
401	\\input{kerneldoc-preamble.sty}
402'''
403
404# With Sphinx 1.6, it is possible to change the Bg color directly
405# by using:
406#	\definecolor{sphinxnoteBgColor}{RGB}{204,255,255}
407#	\definecolor{sphinxwarningBgColor}{RGB}{255,204,204}
408#	\definecolor{sphinxattentionBgColor}{RGB}{255,255,204}
409#	\definecolor{sphinximportantBgColor}{RGB}{192,255,204}
410#
411# However, it require to use sphinx heavy box with:
412#
413#	\renewenvironment{sphinxlightbox} {%
414#		\\begin{sphinxheavybox}
415#	}
416#		\\end{sphinxheavybox}
417#	}
418#
419# Unfortunately, the implementation is buggy: if a note is inside a
420# table, it isn't displayed well. So, for now, let's use boring
421# black and white notes.
422
423# Grouping the document tree into LaTeX files. List of tuples
424# (source start file, target name, title,
425#  author, documentclass [howto, manual, or own class]).
426# Sorted in alphabetical order
427latex_documents = [
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
428]
429
430# Add all other index files from Documentation/ subdirectories
431for fn in os.listdir('.'):
432    doc = os.path.join(fn, "index")
433    if os.path.exists(doc + ".rst"):
434        has = False
435        for l in latex_documents:
436            if l[0] == doc:
437                has = True
438                break
439        if not has:
440            latex_documents.append((doc, fn + '.tex',
441                                    'Linux %s Documentation' % fn.capitalize(),
442                                    'The kernel development community',
443                                    'manual'))
444
445# The name of an image file (relative to this directory) to place at the top of
446# the title page.
447#latex_logo = None
448
449# For "manual" documents, if this is true, then toplevel headings are parts,
450# not chapters.
451#latex_use_parts = False
452
453# If true, show page references after internal links.
454#latex_show_pagerefs = False
455
456# If true, show URL addresses after external links.
457#latex_show_urls = False
458
459# Documents to append as an appendix to all manuals.
460#latex_appendices = []
461
462# If false, no module index is generated.
463#latex_domain_indices = True
464
465# Additional LaTeX stuff to be copied to build directory
466latex_additional_files = [
467    'sphinx/kerneldoc-preamble.sty',
468]
469
470
471# -- Options for manual page output ---------------------------------------
472
473# One entry per manual page. List of tuples
474# (source start file, name, description, authors, manual section).
475man_pages = [
476    (master_doc, 'thelinuxkernel', 'The Linux Kernel Documentation',
477     [author], 1)
478]
479
480# If true, show URL addresses after external links.
481#man_show_urls = False
482
483
484# -- Options for Texinfo output -------------------------------------------
485
486# Grouping the document tree into Texinfo files. List of tuples
487# (source start file, target name, title, author,
488#  dir menu entry, description, category)
489texinfo_documents = [
490    (master_doc, 'TheLinuxKernel', 'The Linux Kernel Documentation',
491     author, 'TheLinuxKernel', 'One line description of project.',
492     'Miscellaneous'),
493]
494
 
 
 
 
 
 
 
 
 
 
 
 
 
495# -- Options for Epub output ----------------------------------------------
496
497# Bibliographic Dublin Core info.
498epub_title = project
499epub_author = author
500epub_publisher = author
501epub_copyright = copyright
502
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
503# A list of files that should not be packed into the epub file.
504epub_exclude_files = ['search.html']
505
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
506#=======
507# rst2pdf
508#
509# Grouping the document tree into PDF files. List of tuples
510# (source start file, target name, title, author, options).
511#
512# See the Sphinx chapter of https://ralsina.me/static/manual.pdf
513#
514# FIXME: Do not add the index file here; the result will be too big. Adding
515# multiple PDF files here actually tries to get the cross-referencing right
516# *between* PDF files.
517pdf_documents = [
518    ('kernel-documentation', u'Kernel', u'Kernel', u'J. Random Bozo'),
519]
520
521# kernel-doc extension configuration for running Sphinx directly (e.g. by Read
522# the Docs). In a normal build, these are supplied from the Makefile via command
523# line arguments.
524kerneldoc_bin = '../scripts/kernel-doc'
525kerneldoc_srctree = '..'
526
527# ------------------------------------------------------------------------------
528# Since loadConfig overwrites settings from the global namespace, it has to be
529# the last statement in the conf.py file
530# ------------------------------------------------------------------------------
531loadConfig(globals())
v4.10.11
  1# -*- 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
 17import sphinx
 
 
 
 
 
 
 
 
 
 
 
 
 18
 19# Get Sphinx version
 20major, minor, patch = map(int, sphinx.__version__.split("."))
 21
 
 
 
 
 
 
 22
 23# If extensions (or modules to document with autodoc) are in another directory,
 24# add these directories to sys.path here. If the directory is relative to the
 25# documentation root, use os.path.abspath to make it absolute, like shown here.
 26sys.path.insert(0, os.path.abspath('sphinx'))
 27from load_config import loadConfig
 28
 29# -- General configuration ------------------------------------------------
 30
 31# If your documentation needs a minimal Sphinx version, state it here.
 32#needs_sphinx = '1.0'
 33
 34# Add any Sphinx extension module names here, as strings. They can be
 35# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
 36# ones.
 37extensions = ['kerneldoc', 'rstFlatTable', 'kernel_include', 'cdomain']
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 38
 39# The name of the math extension changed on Sphinx 1.4
 40if major == 1 and minor > 3:
 
 
 
 41    extensions.append("sphinx.ext.imgmath")
 
 42else:
 43    extensions.append("sphinx.ext.pngmath")
 44
 45# Add any paths that contain templates here, relative to this directory.
 46templates_path = ['_templates']
 47
 48# The suffix(es) of source filenames.
 49# You can specify multiple suffix as a list of string:
 50# source_suffix = ['.rst', '.md']
 51source_suffix = '.rst'
 52
 53# The encoding of source files.
 54#source_encoding = 'utf-8-sig'
 55
 56# The master toctree document.
 57master_doc = 'index'
 58
 59# General information about the project.
 60project = 'The Linux Kernel'
 61copyright = '2016, The kernel development community'
 62author = 'The kernel development community'
 63
 64# The version info for the project you're documenting, acts as replacement for
 65# |version| and |release|, also used in various other places throughout the
 66# built documents.
 67#
 68# In a normal build, version and release are are set to KERNELVERSION and
 69# KERNELRELEASE, respectively, from the Makefile via Sphinx command line
 70# arguments.
 71#
 72# The following code tries to extract the information by reading the Makefile,
 73# when Sphinx is run directly (e.g. by Read the Docs).
 74try:
 75    makefile_version = None
 76    makefile_patchlevel = None
 77    for line in open('../Makefile'):
 78        key, val = [x.strip() for x in line.split('=', 2)]
 79        if key == 'VERSION':
 80            makefile_version = val
 81        elif key == 'PATCHLEVEL':
 82            makefile_patchlevel = val
 83        if makefile_version and makefile_patchlevel:
 84            break
 85except:
 86    pass
 87finally:
 88    if makefile_version and makefile_patchlevel:
 89        version = release = makefile_version + '.' + makefile_patchlevel
 90    else:
 91        sys.stderr.write('Warning: Could not extract kernel version\n')
 92        version = release = "unknown version"
 93
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 94# The language for content autogenerated by Sphinx. Refer to documentation
 95# for a list of supported languages.
 96#
 97# This is also used if you do content translation via gettext catalogs.
 98# Usually you set "language" from the command line for these cases.
 99language = None
100
101# There are two options for replacing |today|: either, you set today to some
102# non-false value, then it is used:
103#today = ''
104# Else, today_fmt is used as the format for a strftime call.
105#today_fmt = '%B %d, %Y'
106
107# List of patterns, relative to source directory, that match files and
108# directories to ignore when looking for source files.
109exclude_patterns = ['output']
110
111# The reST default role (used for this markup: `text`) to use for all
112# documents.
113#default_role = None
114
115# If true, '()' will be appended to :func: etc. cross-reference text.
116#add_function_parentheses = True
117
118# If true, the current module name will be prepended to all description
119# unit titles (such as .. function::).
120#add_module_names = True
121
122# If true, sectionauthor and moduleauthor directives will be shown in the
123# output. They are ignored by default.
124#show_authors = False
125
126# The name of the Pygments (syntax highlighting) style to use.
127pygments_style = 'sphinx'
128
129# A list of ignored prefixes for module index sorting.
130#modindex_common_prefix = []
131
132# If true, keep warnings as "system message" paragraphs in the built documents.
133#keep_warnings = False
134
135# If true, `todo` and `todoList` produce output, else they produce nothing.
136todo_include_todos = False
137
138primary_domain = 'C'
139highlight_language = 'none'
140
141# -- Options for HTML output ----------------------------------------------
142
143# The theme to use for HTML and HTML Help pages.  See the documentation for
144# a list of builtin themes.
145
146# The Read the Docs theme is available from
147# - https://github.com/snide/sphinx_rtd_theme
148# - https://pypi.python.org/pypi/sphinx_rtd_theme
149# - python-sphinx-rtd-theme package (on Debian)
150try:
151    import sphinx_rtd_theme
152    html_theme = 'sphinx_rtd_theme'
153    html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
154except ImportError:
155    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')
156
157# Theme options are theme-specific and customize the look and feel of a theme
158# further.  For a list of options available for each theme, see the
159# documentation.
160#html_theme_options = {}
161
162# Add any paths that contain custom themes here, relative to this directory.
163#html_theme_path = []
164
165# The name for this set of Sphinx documents.  If None, it defaults to
166# "<project> v<release> documentation".
167#html_title = None
168
169# A shorter title for the navigation bar.  Default is the same as html_title.
170#html_short_title = None
171
172# The name of an image file (relative to this directory) to place at the top
173# of the sidebar.
174#html_logo = None
175
176# The name of an image file (within the static path) to use as favicon of the
177# docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32
178# pixels large.
179#html_favicon = None
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
180
181# Add any paths that contain custom static files (such as style sheets) here,
182# relative to this directory. They are copied after the builtin static files,
183# so a file named "default.css" will overwrite the builtin "default.css".
184
185html_static_path = ['sphinx-static']
186
187html_context = {
188    'css_files': [
189        '_static/theme_overrides.css',
190    ],
191}
192
193# Add any extra paths that contain custom files (such as robots.txt or
194# .htaccess) here, relative to this directory. These files are copied
195# directly to the root of the documentation.
196#html_extra_path = []
197
198# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
199# using the given strftime format.
200#html_last_updated_fmt = '%b %d, %Y'
201
202# If true, SmartyPants will be used to convert quotes and dashes to
203# typographically correct entities.
204#html_use_smartypants = True
205
206# Custom sidebar templates, maps document names to template names.
207#html_sidebars = {}
208
209# Additional templates that should be rendered to pages, maps page names to
210# template names.
211#html_additional_pages = {}
212
213# If false, no module index is generated.
214#html_domain_indices = True
215
216# If false, no index is generated.
217#html_use_index = True
218
219# If true, the index is split into individual pages for each letter.
220#html_split_index = False
221
222# If true, links to the reST sources are added to the pages.
223#html_show_sourcelink = True
224
225# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
226#html_show_sphinx = True
227
228# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
229#html_show_copyright = True
230
231# If true, an OpenSearch description file will be output, and all pages will
232# contain a <link> tag referring to it.  The value of this option must be the
233# base URL from which the finished HTML is served.
234#html_use_opensearch = ''
235
236# This is the file name suffix for HTML files (e.g. ".xhtml").
237#html_file_suffix = None
238
239# Language to be used for generating the HTML full-text search index.
240# Sphinx supports the following languages:
241#   'da', 'de', 'en', 'es', 'fi', 'fr', 'h', 'it', 'ja'
242#   'nl', 'no', 'pt', 'ro', 'r', 'sv', 'tr'
243#html_search_language = 'en'
244
245# A dictionary with options for the search language support, empty by default.
246# Now only 'ja' uses this config value
247#html_search_options = {'type': 'default'}
248
249# The name of a javascript file (relative to the configuration directory) that
250# implements a search results scorer. If empty, the default will be used.
251#html_search_scorer = 'scorer.js'
252
253# Output file base name for HTML help builder.
254htmlhelp_basename = 'TheLinuxKerneldoc'
255
256# -- Options for LaTeX output ---------------------------------------------
257
258latex_elements = {
259# The paper size ('letterpaper' or 'a4paper').
260'papersize': 'a4paper',
 
 
 
261
262# The font size ('10pt', '11pt' or '12pt').
263'pointsize': '8pt',
264
265# Latex figure (float) alignment
266#'figure_align': 'htbp',
 
 
 
 
 
 
 
 
267
268# Don't mangle with UTF-8 chars
269'inputenc': '',
270'utf8extra': '',
271
272# Additional stuff for the LaTeX preamble.
273    'preamble': '''
274	% Adjust margins
275	\\usepackage[margin=0.5in, top=1in, bottom=1in]{geometry}
276
277        % Allow generate some pages in landscape
278        \\usepackage{lscape}
279
280        % Put notes in color and let them be inside a table
281	\\definecolor{NoteColor}{RGB}{204,255,255}
282	\\definecolor{WarningColor}{RGB}{255,204,204}
283	\\definecolor{AttentionColor}{RGB}{255,255,204}
284	\\definecolor{OtherColor}{RGB}{204,204,204}
285        \\newlength{\\mynoticelength}
286        \\makeatletter\\newenvironment{coloredbox}[1]{%
287	   \\setlength{\\fboxrule}{1pt}
288	   \\setlength{\\fboxsep}{7pt}
289	   \\setlength{\\mynoticelength}{\\linewidth}
290	   \\addtolength{\\mynoticelength}{-2\\fboxsep}
291	   \\addtolength{\\mynoticelength}{-2\\fboxrule}
292           \\begin{lrbox}{\\@tempboxa}\\begin{minipage}{\\mynoticelength}}{\\end{minipage}\\end{lrbox}%
293	   \\ifthenelse%
294	      {\\equal{\\py@noticetype}{note}}%
295	      {\\colorbox{NoteColor}{\\usebox{\\@tempboxa}}}%
296	      {%
297	         \\ifthenelse%
298	         {\\equal{\\py@noticetype}{warning}}%
299	         {\\colorbox{WarningColor}{\\usebox{\\@tempboxa}}}%
300		 {%
301	            \\ifthenelse%
302	            {\\equal{\\py@noticetype}{attention}}%
303	            {\\colorbox{AttentionColor}{\\usebox{\\@tempboxa}}}%
304	            {\\colorbox{OtherColor}{\\usebox{\\@tempboxa}}}%
305		 }%
306	      }%
307        }\\makeatother
308
309        \\makeatletter
310        \\renewenvironment{notice}[2]{%
311          \\def\\py@noticetype{#1}
312          \\begin{coloredbox}{#1}
313          \\bf\\it
314          \\par\\strong{#2}
315          \\csname py@noticestart@#1\\endcsname
316        }
317	{
318          \\csname py@noticeend@\\py@noticetype\\endcsname
319          \\end{coloredbox}
320        }
321	\\makeatother
322
323	% Use some font with UTF-8 support with XeLaTeX
324        \\usepackage{fontspec}
325        \\setsansfont{DejaVu Serif}
326        \\setromanfont{DejaVu Sans}
327        \\setmonofont{DejaVu Sans Mono}
328
329	% To allow adjusting table sizes
330	\\usepackage{adjustbox}
331
332     '''
333}
334
335# Fix reference escape troubles with Sphinx 1.4.x
336if major == 1 and minor > 3:
337    latex_elements['preamble']  += '\\renewcommand*{\\DUrole}[2]{ #2 }\n'
338
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
339# Grouping the document tree into LaTeX files. List of tuples
340# (source start file, target name, title,
341#  author, documentclass [howto, manual, or own class]).
 
342latex_documents = [
343    ('doc-guide/index', 'kernel-doc-guide.tex', 'Linux Kernel Documentation Guide',
344     'The kernel development community', 'manual'),
345    ('admin-guide/index', 'linux-user.tex', 'Linux Kernel User Documentation',
346     'The kernel development community', 'manual'),
347    ('core-api/index', 'core-api.tex', 'The kernel core API manual',
348     'The kernel development community', 'manual'),
349    ('driver-api/index', 'driver-api.tex', 'The kernel driver API manual',
350     'The kernel development community', 'manual'),
351    ('kernel-documentation', 'kernel-documentation.tex', 'The Linux Kernel Documentation',
352     'The kernel development community', 'manual'),
353    ('process/index', 'development-process.tex', 'Linux Kernel Development Documentation',
354     'The kernel development community', 'manual'),
355    ('gpu/index', 'gpu.tex', 'Linux GPU Driver Developer\'s Guide',
356     'The kernel development community', 'manual'),
357    ('media/index', 'media.tex', 'Linux Media Subsystem Documentation',
358     'The kernel development community', 'manual'),
359    ('security/index', 'security.tex', 'The kernel security subsystem manual',
360     'The kernel development community', 'manual'),
361]
362
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
363# The name of an image file (relative to this directory) to place at the top of
364# the title page.
365#latex_logo = None
366
367# For "manual" documents, if this is true, then toplevel headings are parts,
368# not chapters.
369#latex_use_parts = False
370
371# If true, show page references after internal links.
372#latex_show_pagerefs = False
373
374# If true, show URL addresses after external links.
375#latex_show_urls = False
376
377# Documents to append as an appendix to all manuals.
378#latex_appendices = []
379
380# If false, no module index is generated.
381#latex_domain_indices = True
382
 
 
 
 
 
383
384# -- Options for manual page output ---------------------------------------
385
386# One entry per manual page. List of tuples
387# (source start file, name, description, authors, manual section).
388man_pages = [
389    (master_doc, 'thelinuxkernel', 'The Linux Kernel Documentation',
390     [author], 1)
391]
392
393# If true, show URL addresses after external links.
394#man_show_urls = False
395
396
397# -- Options for Texinfo output -------------------------------------------
398
399# Grouping the document tree into Texinfo files. List of tuples
400# (source start file, target name, title, author,
401#  dir menu entry, description, category)
402texinfo_documents = [
403    (master_doc, 'TheLinuxKernel', 'The Linux Kernel Documentation',
404     author, 'TheLinuxKernel', 'One line description of project.',
405     'Miscellaneous'),
406]
407
408# Documents to append as an appendix to all manuals.
409#texinfo_appendices = []
410
411# If false, no module index is generated.
412#texinfo_domain_indices = True
413
414# How to display URL addresses: 'footnote', 'no', or 'inline'.
415#texinfo_show_urls = 'footnote'
416
417# If true, do not generate a @detailmenu in the "Top" node's menu.
418#texinfo_no_detailmenu = False
419
420
421# -- Options for Epub output ----------------------------------------------
422
423# Bibliographic Dublin Core info.
424epub_title = project
425epub_author = author
426epub_publisher = author
427epub_copyright = copyright
428
429# The basename for the epub file. It defaults to the project name.
430#epub_basename = project
431
432# The HTML theme for the epub output. Since the default themes are not
433# optimized for small screen space, using the same theme for HTML and epub
434# output is usually not wise. This defaults to 'epub', a theme designed to save
435# visual space.
436#epub_theme = 'epub'
437
438# The language of the text. It defaults to the language option
439# or 'en' if the language is not set.
440#epub_language = ''
441
442# The scheme of the identifier. Typical schemes are ISBN or URL.
443#epub_scheme = ''
444
445# The unique identifier of the text. This can be a ISBN number
446# or the project homepage.
447#epub_identifier = ''
448
449# A unique identification for the text.
450#epub_uid = ''
451
452# A tuple containing the cover image and cover page html template filenames.
453#epub_cover = ()
454
455# A sequence of (type, uri, title) tuples for the guide element of content.opf.
456#epub_guide = ()
457
458# HTML files that should be inserted before the pages created by sphinx.
459# The format is a list of tuples containing the path and title.
460#epub_pre_files = []
461
462# HTML files that should be inserted after the pages created by sphinx.
463# The format is a list of tuples containing the path and title.
464#epub_post_files = []
465
466# A list of files that should not be packed into the epub file.
467epub_exclude_files = ['search.html']
468
469# The depth of the table of contents in toc.ncx.
470#epub_tocdepth = 3
471
472# Allow duplicate toc entries.
473#epub_tocdup = True
474
475# Choose between 'default' and 'includehidden'.
476#epub_tocscope = 'default'
477
478# Fix unsupported image types using the Pillow.
479#epub_fix_images = False
480
481# Scale large images.
482#epub_max_image_width = 0
483
484# How to display URL addresses: 'footnote', 'no', or 'inline'.
485#epub_show_urls = 'inline'
486
487# If false, no index is generated.
488#epub_use_index = True
489
490#=======
491# rst2pdf
492#
493# Grouping the document tree into PDF files. List of tuples
494# (source start file, target name, title, author, options).
495#
496# See the Sphinx chapter of http://ralsina.me/static/manual.pdf
497#
498# FIXME: Do not add the index file here; the result will be too big. Adding
499# multiple PDF files here actually tries to get the cross-referencing right
500# *between* PDF files.
501pdf_documents = [
502    ('kernel-documentation', u'Kernel', u'Kernel', u'J. Random Bozo'),
503]
504
505# kernel-doc extension configuration for running Sphinx directly (e.g. by Read
506# the Docs). In a normal build, these are supplied from the Makefile via command
507# line arguments.
508kerneldoc_bin = '../scripts/kernel-doc'
509kerneldoc_srctree = '..'
510
511# ------------------------------------------------------------------------------
512# Since loadConfig overwrites settings from the global namespace, it has to be
513# the last statement in the conf.py file
514# ------------------------------------------------------------------------------
515loadConfig(globals())