1 # -*- coding: utf-8 -*-
3 # The U-Boot 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.
19 from subprocess import check_output
22 major, minor, patch = sphinx.version_info[:3]
24 # Set canonical URL from the Read the Docs Domain
25 html_baseurl = os.environ.get("READTHEDOCS_CANONICAL_URL", "")
27 # Tell Jinja2 templates the build is running on Read the Docs
28 if os.environ.get("READTHEDOCS", "") == "True":
33 # If extensions (or modules to document with autodoc) are in another directory,
34 # add these directories to sys.path here. If the directory is relative to the
35 # documentation root, use os.path.abspath to make it absolute, like shown here.
36 sys.path.insert(0, os.path.abspath('sphinx'))
37 from load_config import loadConfig
39 # -- General configuration ------------------------------------------------
41 # If your documentation needs a minimal Sphinx version, state it here.
42 needs_sphinx = '2.4.4'
44 # Add any Sphinx extension module names here, as strings. They can be
45 # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
47 extensions = ['kerneldoc', 'rstFlatTable', 'kernel_include',
48 'kfigure', 'sphinx.ext.ifconfig', # 'automarkup',
49 'maintainers_include', 'sphinx.ext.autosectionlabel',
50 'kernel_abi', 'kernel_feat', 'sphinx-prompt']
53 # cdomain is badly broken in Sphinx 3+. Leaving it out generates *most*
54 # of the docs correctly, but not all. Scream bloody murder but allow
55 # the process to proceed; hopefully somebody will fix this properly soon.
58 if (major > 3) or (minor > 0 or patch >= 2):
59 # Sphinx c function parser is more pedantic with regards to type
60 # checking. Due to that, having macros at c:function cause problems.
61 # Those needed to be scaped by using c_id_attributes[] array
63 # GCC Compiler types not parsed by Sphinx:
66 # include/linux/compiler_types.h:
75 # include/linux/compiler_attributes.h:
82 "__attribute_const__",
92 "__no_caller_saved_registers",
108 # include/efi_loader.h
111 # include/linux/memblock.h:
115 # include/linux/init.h:
119 # include/linux/linkage.h:
124 extensions.append('cdomain')
126 # Ensure that autosectionlabel will produce unique names
127 autosectionlabel_prefix_document = True
128 autosectionlabel_maxdepth = 2
130 extensions.append("sphinx.ext.imgmath")
132 # Add any paths that contain templates here, relative to this directory.
133 templates_path = ['_templates']
135 # The suffix(es) of source filenames.
136 # You can specify multiple suffix as a list of string:
137 # source_suffix = ['.rst', '.md']
138 source_suffix = '.rst'
140 # The encoding of source files.
141 #source_encoding = 'utf-8-sig'
143 # The master toctree document.
146 # General information about the project.
147 project = 'Das U-Boot'
148 copyright = 'The U-Boot development community'
149 author = 'The U-Boot development community'
151 # The version info for the project you're documenting, acts as replacement for
152 # |version| and |release|, also used in various other places throughout the
155 # In a normal build, version and release are are set to KERNELVERSION and
156 # KERNELRELEASE, respectively, from the Makefile via Sphinx command line
159 # The following code tries to extract the information by reading the Makefile,
160 # when Sphinx is run directly (e.g. by Read the Docs).
162 makefile_version = None
163 makefile_patchlevel = None
164 for line in open('../Makefile'):
165 key, val = [x.strip() for x in line.split('=', 2)]
167 makefile_version = val
168 elif key == 'PATCHLEVEL':
169 makefile_patchlevel = val
170 if makefile_version and makefile_patchlevel:
175 if makefile_version and makefile_patchlevel:
176 version = release = makefile_version + '.' + makefile_patchlevel
178 version = release = "unknown version"
180 # The language for content autogenerated by Sphinx. Refer to documentation
181 # for a list of supported languages.
183 # This is also used if you do content translation via gettext catalogs.
184 # Usually you set "language" from the command line for these cases.
187 # There are two options for replacing |today|: either, you set today to some
188 # non-false value, then it is used:
190 # Else, today_fmt is used as the format for a strftime call.
191 #today_fmt = '%B %d, %Y'
193 # List of patterns, relative to source directory, that match files and
194 # directories to ignore when looking for source files.
195 exclude_patterns = ['output']
197 # The reST default role (used for this markup: `text`) to use for all
201 # If true, '()' will be appended to :func: etc. cross-reference text.
202 #add_function_parentheses = True
204 # If true, the current module name will be prepended to all description
205 # unit titles (such as .. function::).
206 #add_module_names = True
208 # If true, sectionauthor and moduleauthor directives will be shown in the
209 # output. They are ignored by default.
210 #show_authors = False
212 # The name of the Pygments (syntax highlighting) style to use.
213 pygments_style = 'sphinx'
215 # A list of ignored prefixes for module index sorting.
216 #modindex_common_prefix = []
218 # If true, keep warnings as "system message" paragraphs in the built documents.
219 #keep_warnings = False
221 # If true, `todo` and `todoList` produce output, else they produce nothing.
222 todo_include_todos = False
225 highlight_language = 'none'
227 # -- Options for HTML output ----------------------------------------------
229 # The theme to use for HTML and HTML Help pages. See the documentation for
230 # a list of builtin themes.
232 # The Read the Docs theme is available from
233 # - https://github.com/snide/sphinx_rtd_theme
234 # - https://pypi.python.org/pypi/sphinx_rtd_theme
235 # - python-sphinx-rtd-theme package (on Debian)
237 import sphinx_rtd_theme
238 html_theme = 'sphinx_rtd_theme'
239 extensions.append('sphinx_rtd_theme')
241 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')
243 # Theme options are theme-specific and customize the look and feel of a theme
244 # further. For a list of options available for each theme, see the
246 #html_theme_options = {}
248 # Add any paths that contain custom themes here, relative to this directory.
249 #html_theme_path = []
251 # The name for this set of Sphinx documents. If None, it defaults to
252 # "<project> v<release> documentation".
255 # A shorter title for the navigation bar. Default is the same as html_title.
256 #html_short_title = None
258 # The name of an image file (relative to this directory) to place at the top
260 html_logo = '../tools/logos/u-boot_logo.svg'
262 # The name of an image file (within the static path) to use as favicon of the
263 # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
267 # Add any paths that contain custom static files (such as style sheets) here,
268 # relative to this directory. They are copied after the builtin static files,
269 # so a file named "default.css" will overwrite the builtin "default.css".
271 html_static_path = ['sphinx-static']
275 '_static/theme_overrides.css',
279 # Add any extra paths that contain custom files (such as robots.txt or
280 # .htaccess) here, relative to this directory. These files are copied
281 # directly to the root of the documentation.
282 #html_extra_path = []
284 # If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
285 # using the given strftime format.
286 #html_last_updated_fmt = '%b %d, %Y'
288 # If true, SmartyPants will be used to convert quotes and dashes to
289 # typographically correct entities.
290 html_use_smartypants = False
292 # Custom sidebar templates, maps document names to template names.
295 # Additional templates that should be rendered to pages, maps page names to
297 #html_additional_pages = {}
299 # If false, no module index is generated.
300 #html_domain_indices = True
302 # If false, no index is generated.
303 #html_use_index = True
305 # If true, the index is split into individual pages for each letter.
306 #html_split_index = False
308 # If true, links to the reST sources are added to the pages.
309 #html_show_sourcelink = True
311 # If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
312 #html_show_sphinx = True
314 # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
315 #html_show_copyright = True
317 # If true, an OpenSearch description file will be output, and all pages will
318 # contain a <link> tag referring to it. The value of this option must be the
319 # base URL from which the finished HTML is served.
320 #html_use_opensearch = ''
322 # This is the file name suffix for HTML files (e.g. ".xhtml").
323 #html_file_suffix = None
325 # Language to be used for generating the HTML full-text search index.
326 # Sphinx supports the following languages:
327 # 'da', 'de', 'en', 'es', 'fi', 'fr', 'h', 'it', 'ja'
328 # 'nl', 'no', 'pt', 'ro', 'r', 'sv', 'tr'
329 #html_search_language = 'en'
331 # A dictionary with options for the search language support, empty by default.
332 # Now only 'ja' uses this config value
333 #html_search_options = {'type': 'default'}
335 # The name of a javascript file (relative to the configuration directory) that
336 # implements a search results scorer. If empty, the default will be used.
337 #html_search_scorer = 'scorer.js'
339 # Output file base name for HTML help builder.
340 htmlhelp_basename = 'TheUBootdoc'
342 # -- Options for LaTeX output ---------------------------------------------
345 # The paper size ('letterpaper' or 'a4paper').
346 'papersize': 'a4paper',
348 # The font size ('10pt', '11pt' or '12pt').
351 # Latex figure (float) alignment
352 #'figure_align': 'htbp',
354 # Don't mangle with UTF-8 chars
358 # Set document margins
360 hmargin=0.5in, vmargin=1in,
361 parsedliteralwraps=true,
362 verbatimhintsturnover=false,
365 # Additional stuff for the LaTeX preamble.
367 % Use some font with UTF-8 support with XeLaTeX
368 \\usepackage{fontspec}
369 \\setsansfont{DejaVu Sans}
370 \\setromanfont{DejaVu Serif}
371 \\setmonofont{DejaVu Sans Mono}
375 # At least one book (translations) may have Asian characters
376 # with are only displayed if xeCJK is used
378 cjk_cmd = check_output(['fc-list', '--format="%{family[0]}\n"']).decode('utf-8', 'ignore')
379 if cjk_cmd.find("Noto Sans CJK SC") >= 0:
380 print ("enabling CJK for LaTeX builder")
381 latex_elements['preamble'] += '''
382 % This is needed for translations
384 \\setCJKmainfont{Noto Sans CJK SC}
387 # With Sphinx 1.6, it is possible to change the Bg color directly
389 # \definecolor{sphinxnoteBgColor}{RGB}{204,255,255}
390 # \definecolor{sphinxwarningBgColor}{RGB}{255,204,204}
391 # \definecolor{sphinxattentionBgColor}{RGB}{255,255,204}
392 # \definecolor{sphinximportantBgColor}{RGB}{192,255,204}
394 # However, it require to use sphinx heavy box with:
396 # \renewenvironment{sphinxlightbox} {%
397 # \\begin{sphinxheavybox}
399 # \\end{sphinxheavybox}
402 # Unfortunately, the implementation is buggy: if a note is inside a
403 # table, it isn't displayed well. So, for now, let's use boring
404 # black and white notes.
406 # Grouping the document tree into LaTeX files. List of tuples
407 # (source start file, target name, title,
408 # author, documentclass [howto, manual, or own class]).
409 # Sorted in alphabetical order
411 ('index', 'u-boot-hacker-manual.tex', 'U-Boot Hacker Manual',
412 'The U-Boot development community', 'manual'),
415 # Add all other index files from Documentation/ subdirectories
416 for fn in os.listdir('.'):
417 doc = os.path.join(fn, "index")
418 if os.path.exists(doc + ".rst"):
420 for l in latex_documents:
425 latex_documents.append((doc, fn + '.tex',
426 'U-Boot %s Documentation' % fn.capitalize(),
427 'The U-Boot development community',
430 # The name of an image file (relative to this directory) to place at the top of
434 # For "manual" documents, if this is true, then toplevel headings are parts,
436 #latex_use_parts = False
438 # If true, show page references after internal links.
439 #latex_show_pagerefs = False
441 # If true, show URL addresses after external links.
442 #latex_show_urls = False
444 # Documents to append as an appendix to all manuals.
445 #latex_appendices = []
447 # If false, no module index is generated.
448 #latex_domain_indices = True
451 # -- Options for manual page output ---------------------------------------
453 # One entry per manual page. List of tuples
454 # (source start file, name, description, authors, manual section).
456 (master_doc, 'u-boot', 'The U-Boot Documentation',
460 # If true, show URL addresses after external links.
461 #man_show_urls = False
464 # -- Options for Texinfo output -------------------------------------------
466 # Grouping the document tree into Texinfo files. List of tuples
467 # (source start file, target name, title, author,
468 # dir menu entry, description, category)
469 texinfo_documents = [
470 (master_doc, 'u-boot', 'The U-Boot Documentation',
471 author, 'U-Boot', 'Boot loader for embedded systems',
475 # Documents to append as an appendix to all manuals.
476 #texinfo_appendices = []
478 # If false, no module index is generated.
479 #texinfo_domain_indices = True
481 # How to display URL addresses: 'footnote', 'no', or 'inline'.
482 #texinfo_show_urls = 'footnote'
484 # If true, do not generate a @detailmenu in the "Top" node's menu.
485 #texinfo_no_detailmenu = False
488 # -- Options for Epub output ----------------------------------------------
490 # Bibliographic Dublin Core info.
493 epub_publisher = author
494 epub_copyright = copyright
496 # The basename for the epub file. It defaults to the project name.
497 #epub_basename = project
499 # The HTML theme for the epub output. Since the default themes are not
500 # optimized for small screen space, using the same theme for HTML and epub
501 # output is usually not wise. This defaults to 'epub', a theme designed to save
505 # The language of the text. It defaults to the language option
506 # or 'en' if the language is not set.
509 # The scheme of the identifier. Typical schemes are ISBN or URL.
512 # The unique identifier of the text. This can be a ISBN number
513 # or the project homepage.
514 #epub_identifier = ''
516 # A unique identification for the text.
519 # A tuple containing the cover image and cover page html template filenames.
522 # A sequence of (type, uri, title) tuples for the guide element of content.opf.
525 # HTML files that should be inserted before the pages created by sphinx.
526 # The format is a list of tuples containing the path and title.
529 # HTML files that should be inserted after the pages created by sphinx.
530 # The format is a list of tuples containing the path and title.
531 #epub_post_files = []
533 # A list of files that should not be packed into the epub file.
534 epub_exclude_files = ['search.html']
536 # The depth of the table of contents in toc.ncx.
539 # Allow duplicate toc entries.
542 # Choose between 'default' and 'includehidden'.
543 #epub_tocscope = 'default'
545 # Fix unsupported image types using the Pillow.
546 #epub_fix_images = False
548 # Scale large images.
549 #epub_max_image_width = 0
551 # How to display URL addresses: 'footnote', 'no', or 'inline'.
552 #epub_show_urls = 'inline'
554 # If false, no index is generated.
555 #epub_use_index = True
560 # Grouping the document tree into PDF files. List of tuples
561 # (source start file, target name, title, author, options).
563 # See the Sphinx chapter of https://ralsina.me/static/manual.pdf
565 # FIXME: Do not add the index file here; the result will be too big. Adding
566 # multiple PDF files here actually tries to get the cross-referencing right
567 # *between* PDF files.
569 ('uboot-documentation', u'U-Boot', u'U-Boot', u'J. Random Bozo'),
572 # kernel-doc extension configuration for running Sphinx directly (e.g. by Read
573 # the Docs). In a normal build, these are supplied from the Makefile via command
575 kerneldoc_bin = '../scripts/kernel-doc'
576 kerneldoc_srctree = '..'
578 # ------------------------------------------------------------------------------
579 # Since loadConfig overwrites settings from the global namespace, it has to be
580 # the last statement in the conf.py file
581 # ------------------------------------------------------------------------------
582 loadConfig(globals())