blob: 3f456a18f5f974c1bb6653a9d529b29690439b32 [file] [log] [blame]
Mario Six78a88f72018-07-10 08:40:17 +02001# -*- coding: utf-8 -*-
2#
3# The U-Boot 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
Heinrich Schuchardt98f01cf2020-12-31 23:16:46 +010019from subprocess import check_output
20
Mario Six78a88f72018-07-10 08:40:17 +020021# Get Sphinx version
22major, minor, patch = sphinx.version_info[:3]
23
24
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.
28sys.path.insert(0, os.path.abspath('sphinx'))
29from load_config import loadConfig
30
31# -- General configuration ------------------------------------------------
32
33# If your documentation needs a minimal Sphinx version, state it here.
34needs_sphinx = '1.3'
35
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.
Heinrich Schuchardt98f01cf2020-12-31 23:16:46 +010039extensions = ['kerneldoc', 'rstFlatTable', 'kernel_include',
40 'kfigure', 'sphinx.ext.ifconfig', # 'automarkup',
41 'maintainers_include', 'sphinx.ext.autosectionlabel',
42 'kernel_abi', 'kernel_feat']
Heinrich Schuchardtae2b48e2020-11-30 09:52:57 +010043
44#
Heinrich Schuchardt98f01cf2020-12-31 23:16:46 +010045# 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.
Heinrich Schuchardtae2b48e2020-11-30 09:52:57 +010048#
49if major >= 3:
Heinrich Schuchardt98f01cf2020-12-31 23:16:46 +010050 sys.stderr.write('''WARNING: The kernel documentation build process
51 support for Sphinx v3.0 and above is brand new. Be prepared for
52 possible issues in the generated output.
53 ''')
Heinrich Schuchardtae2b48e2020-11-30 09:52:57 +010054 if (major > 3) or (minor > 0 or patch >= 2):
Heinrich Schuchardtae2b48e2020-11-30 09:52:57 +010055 # Sphinx c function parser is more pedantic with regards to type
56 # checking. Due to that, having macros at c:function cause problems.
Heinrich Schuchardt98f01cf2020-12-31 23:16:46 +010057 # Those needed to be scaped by using c_id_attributes[] array
Heinrich Schuchardtae2b48e2020-11-30 09:52:57 +010058 c_id_attributes = [
Heinrich Schuchardt98f01cf2020-12-31 23:16:46 +010059 # GCC Compiler types not parsed by Sphinx:
60 "__restrict__",
Heinrich Schuchardtae2b48e2020-11-30 09:52:57 +010061
Heinrich Schuchardt98f01cf2020-12-31 23:16:46 +010062 # include/linux/compiler_types.h:
63 "__iomem",
64 "__kernel",
65 "noinstr",
66 "notrace",
67 "__percpu",
68 "__rcu",
69 "__user",
70
71 # include/linux/compiler_attributes.h:
72 "__alias",
73 "__aligned",
74 "__aligned_largest",
75 "__always_inline",
76 "__assume_aligned",
77 "__cold",
78 "__attribute_const__",
79 "__copy",
80 "__pure",
81 "__designated_init",
82 "__visible",
83 "__printf",
84 "__scanf",
85 "__gnu_inline",
86 "__malloc",
87 "__mode",
88 "__no_caller_saved_registers",
89 "__noclone",
90 "__nonstring",
91 "__noreturn",
92 "__packed",
93 "__pure",
94 "__section",
95 "__always_unused",
Heinrich Schuchardtae2b48e2020-11-30 09:52:57 +010096 "__maybe_unused",
Heinrich Schuchardt98f01cf2020-12-31 23:16:46 +010097 "__used",
98 "__weak",
99 "noinline",
Heinrich Schuchardtae2b48e2020-11-30 09:52:57 +0100100
101 # include/efi.h
102 "EFIAPI",
103
104 # include/efi_loader.h
105 "__efi_runtime",
Heinrich Schuchardt98f01cf2020-12-31 23:16:46 +0100106
107 # include/linux/memblock.h:
108 "__init_memblock",
109 "__meminit",
110
111 # include/linux/init.h:
112 "__init",
113 "__ref",
114
115 # include/linux/linkage.h:
116 "asmlinkage",
Heinrich Schuchardtae2b48e2020-11-30 09:52:57 +0100117 ]
118
119else:
120 extensions.append('cdomain')
Heinrich Schuchardt98f01cf2020-12-31 23:16:46 +0100121 if major == 1 and minor < 7:
122 sys.stderr.write('WARNING: Sphinx 1.7 or greater will be required as of '
123 'the v2021.04 release\n')
124
125# Ensure that autosectionlabel will produce unique names
126autosectionlabel_prefix_document = True
127autosectionlabel_maxdepth = 2
Mario Six78a88f72018-07-10 08:40:17 +0200128
129# The name of the math extension changed on Sphinx 1.4
Jonathan Corbet9b544c92020-03-20 02:18:30 -0400130if (major == 1 and minor > 3) or (major > 1):
Mario Six78a88f72018-07-10 08:40:17 +0200131 extensions.append("sphinx.ext.imgmath")
132else:
133 extensions.append("sphinx.ext.pngmath")
134
135# Add any paths that contain templates here, relative to this directory.
136templates_path = ['_templates']
137
138# The suffix(es) of source filenames.
139# You can specify multiple suffix as a list of string:
140# source_suffix = ['.rst', '.md']
141source_suffix = '.rst'
142
143# The encoding of source files.
144#source_encoding = 'utf-8-sig'
145
146# The master toctree document.
147master_doc = 'index'
148
149# General information about the project.
Heinrich Schuchardt98f01cf2020-12-31 23:16:46 +0100150project = 'The Linux Kernel'
151copyright = 'The kernel development community'
152author = 'The kernel development community'
Mario Six78a88f72018-07-10 08:40:17 +0200153
154# The version info for the project you're documenting, acts as replacement for
155# |version| and |release|, also used in various other places throughout the
156# built documents.
157#
158# In a normal build, version and release are are set to KERNELVERSION and
159# KERNELRELEASE, respectively, from the Makefile via Sphinx command line
160# arguments.
161#
162# The following code tries to extract the information by reading the Makefile,
163# when Sphinx is run directly (e.g. by Read the Docs).
164try:
165 makefile_version = None
166 makefile_patchlevel = None
167 for line in open('../Makefile'):
168 key, val = [x.strip() for x in line.split('=', 2)]
169 if key == 'VERSION':
170 makefile_version = val
171 elif key == 'PATCHLEVEL':
172 makefile_patchlevel = val
173 if makefile_version and makefile_patchlevel:
174 break
175except:
176 pass
177finally:
178 if makefile_version and makefile_patchlevel:
179 version = release = makefile_version + '.' + makefile_patchlevel
180 else:
181 version = release = "unknown version"
182
183# The language for content autogenerated by Sphinx. Refer to documentation
184# for a list of supported languages.
185#
186# This is also used if you do content translation via gettext catalogs.
187# Usually you set "language" from the command line for these cases.
188language = None
189
190# There are two options for replacing |today|: either, you set today to some
191# non-false value, then it is used:
192#today = ''
193# Else, today_fmt is used as the format for a strftime call.
194#today_fmt = '%B %d, %Y'
195
196# List of patterns, relative to source directory, that match files and
197# directories to ignore when looking for source files.
198exclude_patterns = ['output']
199
200# The reST default role (used for this markup: `text`) to use for all
201# documents.
202#default_role = None
203
204# If true, '()' will be appended to :func: etc. cross-reference text.
205#add_function_parentheses = True
206
207# If true, the current module name will be prepended to all description
208# unit titles (such as .. function::).
209#add_module_names = True
210
211# If true, sectionauthor and moduleauthor directives will be shown in the
212# output. They are ignored by default.
213#show_authors = False
214
215# The name of the Pygments (syntax highlighting) style to use.
216pygments_style = 'sphinx'
217
218# A list of ignored prefixes for module index sorting.
219#modindex_common_prefix = []
220
221# If true, keep warnings as "system message" paragraphs in the built documents.
222#keep_warnings = False
223
224# If true, `todo` and `todoList` produce output, else they produce nothing.
225todo_include_todos = False
226
227primary_domain = 'c'
228highlight_language = 'none'
229
230# -- Options for HTML output ----------------------------------------------
231
232# The theme to use for HTML and HTML Help pages. See the documentation for
233# a list of builtin themes.
234
235# The Read the Docs theme is available from
236# - https://github.com/snide/sphinx_rtd_theme
237# - https://pypi.python.org/pypi/sphinx_rtd_theme
238# - python-sphinx-rtd-theme package (on Debian)
239try:
240 import sphinx_rtd_theme
241 html_theme = 'sphinx_rtd_theme'
242 html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
243except ImportError:
244 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')
245
246# Theme options are theme-specific and customize the look and feel of a theme
247# further. For a list of options available for each theme, see the
248# documentation.
249#html_theme_options = {}
250
251# Add any paths that contain custom themes here, relative to this directory.
252#html_theme_path = []
253
254# The name for this set of Sphinx documents. If None, it defaults to
255# "<project> v<release> documentation".
256#html_title = None
257
258# A shorter title for the navigation bar. Default is the same as html_title.
259#html_short_title = None
260
261# The name of an image file (relative to this directory) to place at the top
262# of the sidebar.
Heinrich Schuchardt98f01cf2020-12-31 23:16:46 +0100263#html_logo = None
Mario Six78a88f72018-07-10 08:40:17 +0200264
265# The name of an image file (within the static path) to use as favicon of the
266# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
267# pixels large.
268#html_favicon = None
269
270# Add any paths that contain custom static files (such as style sheets) here,
271# relative to this directory. They are copied after the builtin static files,
272# so a file named "default.css" will overwrite the builtin "default.css".
273
274html_static_path = ['sphinx-static']
275
276html_context = {
277 'css_files': [
278 '_static/theme_overrides.css',
279 ],
280}
281
282# Add any extra paths that contain custom files (such as robots.txt or
283# .htaccess) here, relative to this directory. These files are copied
284# directly to the root of the documentation.
285#html_extra_path = []
286
287# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
288# using the given strftime format.
289#html_last_updated_fmt = '%b %d, %Y'
290
291# If true, SmartyPants will be used to convert quotes and dashes to
292# typographically correct entities.
Heinrich Schuchardt98f01cf2020-12-31 23:16:46 +0100293html_use_smartypants = False
Mario Six78a88f72018-07-10 08:40:17 +0200294
295# Custom sidebar templates, maps document names to template names.
296#html_sidebars = {}
297
298# Additional templates that should be rendered to pages, maps page names to
299# template names.
300#html_additional_pages = {}
301
302# If false, no module index is generated.
303#html_domain_indices = True
304
305# If false, no index is generated.
306#html_use_index = True
307
308# If true, the index is split into individual pages for each letter.
309#html_split_index = False
310
311# If true, links to the reST sources are added to the pages.
312#html_show_sourcelink = True
313
314# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
315#html_show_sphinx = True
316
317# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
318#html_show_copyright = True
319
320# If true, an OpenSearch description file will be output, and all pages will
321# contain a <link> tag referring to it. The value of this option must be the
322# base URL from which the finished HTML is served.
323#html_use_opensearch = ''
324
325# This is the file name suffix for HTML files (e.g. ".xhtml").
326#html_file_suffix = None
327
328# Language to be used for generating the HTML full-text search index.
329# Sphinx supports the following languages:
330# 'da', 'de', 'en', 'es', 'fi', 'fr', 'h', 'it', 'ja'
331# 'nl', 'no', 'pt', 'ro', 'r', 'sv', 'tr'
332#html_search_language = 'en'
333
334# A dictionary with options for the search language support, empty by default.
335# Now only 'ja' uses this config value
336#html_search_options = {'type': 'default'}
337
338# The name of a javascript file (relative to the configuration directory) that
339# implements a search results scorer. If empty, the default will be used.
340#html_search_scorer = 'scorer.js'
341
342# Output file base name for HTML help builder.
Heinrich Schuchardt98f01cf2020-12-31 23:16:46 +0100343htmlhelp_basename = 'TheLinuxKerneldoc'
Mario Six78a88f72018-07-10 08:40:17 +0200344
345# -- Options for LaTeX output ---------------------------------------------
346
347latex_elements = {
348# The paper size ('letterpaper' or 'a4paper').
349'papersize': 'a4paper',
350
351# The font size ('10pt', '11pt' or '12pt').
Heinrich Schuchardt98f01cf2020-12-31 23:16:46 +0100352'pointsize': '11pt',
Mario Six78a88f72018-07-10 08:40:17 +0200353
354# Latex figure (float) alignment
355#'figure_align': 'htbp',
356
357# Don't mangle with UTF-8 chars
358'inputenc': '',
359'utf8extra': '',
360
361# Additional stuff for the LaTeX preamble.
362 'preamble': '''
363 % Use some font with UTF-8 support with XeLaTeX
364 \\usepackage{fontspec}
Heinrich Schuchardt98f01cf2020-12-31 23:16:46 +0100365 \\setsansfont{DejaVu Sans}
366 \\setromanfont{DejaVu Serif}
Mario Six78a88f72018-07-10 08:40:17 +0200367 \\setmonofont{DejaVu Sans Mono}
Mario Six78a88f72018-07-10 08:40:17 +0200368 '''
369}
370
Heinrich Schuchardt98f01cf2020-12-31 23:16:46 +0100371# At least one book (translations) may have Asian characters
372# with are only displayed if xeCJK is used
373
374cjk_cmd = check_output(['fc-list', '--format="%{family[0]}\n"']).decode('utf-8', 'ignore')
375if cjk_cmd.find("Noto Sans CJK SC") >= 0:
376 print ("enabling CJK for LaTeX builder")
377 latex_elements['preamble'] += '''
378 % This is needed for translations
379 \\usepackage{xeCJK}
380 \\setCJKmainfont{Noto Sans CJK SC}
381 '''
382
Mario Six78a88f72018-07-10 08:40:17 +0200383# Fix reference escape troubles with Sphinx 1.4.x
384if major == 1 and minor > 3:
385 latex_elements['preamble'] += '\\renewcommand*{\\DUrole}[2]{ #2 }\n'
386
387if major == 1 and minor <= 4:
388 latex_elements['preamble'] += '\\usepackage[margin=0.5in, top=1in, bottom=1in]{geometry}'
389elif major == 1 and (minor > 5 or (minor == 5 and patch >= 3)):
390 latex_elements['sphinxsetup'] = 'hmargin=0.5in, vmargin=1in'
391 latex_elements['preamble'] += '\\fvset{fontsize=auto}\n'
392
393# Customize notice background colors on Sphinx < 1.6:
394if major == 1 and minor < 6:
395 latex_elements['preamble'] += '''
396 \\usepackage{ifthen}
397
398 % Put notes in color and let them be inside a table
399 \\definecolor{NoteColor}{RGB}{204,255,255}
400 \\definecolor{WarningColor}{RGB}{255,204,204}
401 \\definecolor{AttentionColor}{RGB}{255,255,204}
402 \\definecolor{ImportantColor}{RGB}{192,255,204}
403 \\definecolor{OtherColor}{RGB}{204,204,204}
404 \\newlength{\\mynoticelength}
405 \\makeatletter\\newenvironment{coloredbox}[1]{%
406 \\setlength{\\fboxrule}{1pt}
407 \\setlength{\\fboxsep}{7pt}
408 \\setlength{\\mynoticelength}{\\linewidth}
409 \\addtolength{\\mynoticelength}{-2\\fboxsep}
410 \\addtolength{\\mynoticelength}{-2\\fboxrule}
411 \\begin{lrbox}{\\@tempboxa}\\begin{minipage}{\\mynoticelength}}{\\end{minipage}\\end{lrbox}%
412 \\ifthenelse%
413 {\\equal{\\py@noticetype}{note}}%
414 {\\colorbox{NoteColor}{\\usebox{\\@tempboxa}}}%
415 {%
416 \\ifthenelse%
417 {\\equal{\\py@noticetype}{warning}}%
418 {\\colorbox{WarningColor}{\\usebox{\\@tempboxa}}}%
419 {%
420 \\ifthenelse%
421 {\\equal{\\py@noticetype}{attention}}%
422 {\\colorbox{AttentionColor}{\\usebox{\\@tempboxa}}}%
423 {%
424 \\ifthenelse%
425 {\\equal{\\py@noticetype}{important}}%
426 {\\colorbox{ImportantColor}{\\usebox{\\@tempboxa}}}%
427 {\\colorbox{OtherColor}{\\usebox{\\@tempboxa}}}%
428 }%
429 }%
430 }%
431 }\\makeatother
432
433 \\makeatletter
434 \\renewenvironment{notice}[2]{%
435 \\def\\py@noticetype{#1}
436 \\begin{coloredbox}{#1}
437 \\bf\\it
438 \\par\\strong{#2}
439 \\csname py@noticestart@#1\\endcsname
440 }
441 {
442 \\csname py@noticeend@\\py@noticetype\\endcsname
443 \\end{coloredbox}
444 }
445 \\makeatother
446
447 '''
448
449# With Sphinx 1.6, it is possible to change the Bg color directly
450# by using:
451# \definecolor{sphinxnoteBgColor}{RGB}{204,255,255}
452# \definecolor{sphinxwarningBgColor}{RGB}{255,204,204}
453# \definecolor{sphinxattentionBgColor}{RGB}{255,255,204}
454# \definecolor{sphinximportantBgColor}{RGB}{192,255,204}
455#
456# However, it require to use sphinx heavy box with:
457#
458# \renewenvironment{sphinxlightbox} {%
459# \\begin{sphinxheavybox}
460# }
461# \\end{sphinxheavybox}
462# }
463#
464# Unfortunately, the implementation is buggy: if a note is inside a
465# table, it isn't displayed well. So, for now, let's use boring
466# black and white notes.
467
468# Grouping the document tree into LaTeX files. List of tuples
469# (source start file, target name, title,
470# author, documentclass [howto, manual, or own class]).
471# Sorted in alphabetical order
472latex_documents = [
Mario Six78a88f72018-07-10 08:40:17 +0200473]
474
Heinrich Schuchardt98f01cf2020-12-31 23:16:46 +0100475# Add all other index files from Documentation/ subdirectories
476for fn in os.listdir('.'):
477 doc = os.path.join(fn, "index")
478 if os.path.exists(doc + ".rst"):
479 has = False
480 for l in latex_documents:
481 if l[0] == doc:
482 has = True
483 break
484 if not has:
485 latex_documents.append((doc, fn + '.tex',
486 'Linux %s Documentation' % fn.capitalize(),
487 'The kernel development community',
488 'manual'))
489
Mario Six78a88f72018-07-10 08:40:17 +0200490# The name of an image file (relative to this directory) to place at the top of
491# the title page.
492#latex_logo = None
493
494# For "manual" documents, if this is true, then toplevel headings are parts,
495# not chapters.
496#latex_use_parts = False
497
498# If true, show page references after internal links.
499#latex_show_pagerefs = False
500
501# If true, show URL addresses after external links.
502#latex_show_urls = False
503
504# Documents to append as an appendix to all manuals.
505#latex_appendices = []
506
507# If false, no module index is generated.
508#latex_domain_indices = True
509
510
511# -- Options for manual page output ---------------------------------------
512
513# One entry per manual page. List of tuples
514# (source start file, name, description, authors, manual section).
515man_pages = [
Heinrich Schuchardt98f01cf2020-12-31 23:16:46 +0100516 (master_doc, 'thelinuxkernel', 'The Linux Kernel Documentation',
Mario Six78a88f72018-07-10 08:40:17 +0200517 [author], 1)
518]
519
520# If true, show URL addresses after external links.
521#man_show_urls = False
522
523
524# -- Options for Texinfo output -------------------------------------------
525
526# Grouping the document tree into Texinfo files. List of tuples
527# (source start file, target name, title, author,
528# dir menu entry, description, category)
529texinfo_documents = [
Heinrich Schuchardt98f01cf2020-12-31 23:16:46 +0100530 (master_doc, 'TheLinuxKernel', 'The Linux Kernel Documentation',
531 author, 'TheLinuxKernel', 'One line description of project.',
Mario Six78a88f72018-07-10 08:40:17 +0200532 'Miscellaneous'),
533]
534
535# Documents to append as an appendix to all manuals.
536#texinfo_appendices = []
537
538# If false, no module index is generated.
539#texinfo_domain_indices = True
540
541# How to display URL addresses: 'footnote', 'no', or 'inline'.
542#texinfo_show_urls = 'footnote'
543
544# If true, do not generate a @detailmenu in the "Top" node's menu.
545#texinfo_no_detailmenu = False
546
547
548# -- Options for Epub output ----------------------------------------------
549
550# Bibliographic Dublin Core info.
551epub_title = project
552epub_author = author
553epub_publisher = author
554epub_copyright = copyright
555
556# The basename for the epub file. It defaults to the project name.
557#epub_basename = project
558
559# The HTML theme for the epub output. Since the default themes are not
560# optimized for small screen space, using the same theme for HTML and epub
561# output is usually not wise. This defaults to 'epub', a theme designed to save
562# visual space.
563#epub_theme = 'epub'
564
565# The language of the text. It defaults to the language option
566# or 'en' if the language is not set.
567#epub_language = ''
568
569# The scheme of the identifier. Typical schemes are ISBN or URL.
570#epub_scheme = ''
571
572# The unique identifier of the text. This can be a ISBN number
573# or the project homepage.
574#epub_identifier = ''
575
576# A unique identification for the text.
577#epub_uid = ''
578
579# A tuple containing the cover image and cover page html template filenames.
580#epub_cover = ()
581
582# A sequence of (type, uri, title) tuples for the guide element of content.opf.
583#epub_guide = ()
584
585# HTML files that should be inserted before the pages created by sphinx.
586# The format is a list of tuples containing the path and title.
587#epub_pre_files = []
588
589# HTML files that should be inserted after the pages created by sphinx.
590# The format is a list of tuples containing the path and title.
591#epub_post_files = []
592
593# A list of files that should not be packed into the epub file.
594epub_exclude_files = ['search.html']
595
596# The depth of the table of contents in toc.ncx.
597#epub_tocdepth = 3
598
599# Allow duplicate toc entries.
600#epub_tocdup = True
601
602# Choose between 'default' and 'includehidden'.
603#epub_tocscope = 'default'
604
605# Fix unsupported image types using the Pillow.
606#epub_fix_images = False
607
608# Scale large images.
609#epub_max_image_width = 0
610
611# How to display URL addresses: 'footnote', 'no', or 'inline'.
612#epub_show_urls = 'inline'
613
614# If false, no index is generated.
615#epub_use_index = True
616
617#=======
618# rst2pdf
619#
620# Grouping the document tree into PDF files. List of tuples
621# (source start file, target name, title, author, options).
622#
Heinrich Schuchardt98f01cf2020-12-31 23:16:46 +0100623# See the Sphinx chapter of https://ralsina.me/static/manual.pdf
Mario Six78a88f72018-07-10 08:40:17 +0200624#
625# FIXME: Do not add the index file here; the result will be too big. Adding
626# multiple PDF files here actually tries to get the cross-referencing right
627# *between* PDF files.
628pdf_documents = [
Heinrich Schuchardt98f01cf2020-12-31 23:16:46 +0100629 ('kernel-documentation', u'Kernel', u'Kernel', u'J. Random Bozo'),
Mario Six78a88f72018-07-10 08:40:17 +0200630]
631
632# kernel-doc extension configuration for running Sphinx directly (e.g. by Read
633# the Docs). In a normal build, these are supplied from the Makefile via command
634# line arguments.
635kerneldoc_bin = '../scripts/kernel-doc'
636kerneldoc_srctree = '..'
637
638# ------------------------------------------------------------------------------
639# Since loadConfig overwrites settings from the global namespace, it has to be
640# the last statement in the conf.py file
641# ------------------------------------------------------------------------------
642loadConfig(globals())