zephyr/doc
Ulf Magnusson 930dbd5d80 doc: Document Kconfig extensions and Zephyr-specific behavior
Document the gsource (globbing source), rsource (relative source), and
grsource (globbing + relative source) statements.

Also add a separate section that documents Zephyr's non-standard
prefer-later-defaults Kconfig behavior. It was only mentioned in passing
before.

Piggyback: Move the note about .config assignments having no effect on
invisible symbols closer to the beginning of the 'Configuring invisible
Kconfig symbols' section. It makes more sense there.

Signed-off-by: Ulf Magnusson <ulfalizer@gmail.com>
2018-05-10 16:24:42 -07:00
..
api Bluetooth: Remove bt_storage API 2018-05-04 17:26:05 -04:00
application doc: Update for menuconfig.py 2018-05-07 21:53:37 +02:00
contribute doc: fix links to mailing lists 2018-04-21 06:55:46 -07:00
crypto doc: fix more spelling errors throughout docs 2017-02-28 13:22:13 +00:00
devices fs: Convert NFFS partition to a generic one 2018-04-26 16:06:55 +05:30
extensions doc: sphinx: Fix broken import of lexer.DtsLexer 2018-03-29 08:16:04 -04:00
getting_started kconfig: Remove the C Kconfig implementation 2018-05-07 21:53:37 +02:00
introduction doc: tweak Zephyr introduction features list 2018-02-07 16:42:02 -05:00
kernel doc: fix misspellings in doc and Kconfig files 2018-05-09 15:06:43 -05:00
porting doc: Document Kconfig extensions and Zephyr-specific behavior 2018-05-10 16:24:42 -07:00
reference/kconfig doc: restructure application primer 2016-12-24 01:53:17 +00:00
scripts doc: genrest: Simplify select logic with split_expr() 2018-04-17 08:02:40 -07:00
security doc: change https://zephyrproject.org/doc refs 2018-05-02 18:32:44 -04:00
static doc: improve Sphinx search results output 2018-04-21 06:54:35 -07:00
subsystems doc: document best practices for main.c suite declaration 2018-05-09 13:19:38 -04:00
templates doc: fix .rst files canonical heading order 2017-01-20 16:06:36 -08:00
themes/zephyr doc: Change conf.py and index.rst to fix the copyright and license. 2016-02-05 20:24:34 -05:00
tools doc: Expand info about troubleshooting ModemManager 2018-04-21 07:05:38 -07:00
404.rst doc: update links to new zephyrproject.org site 2017-11-03 19:31:14 -04:00
LICENSING.rst doc: remove use of :download: directive 2017-08-22 08:34:37 -04:00
Makefile doc: genrest: Use Kconfiglib 2 and improve output 2018-03-29 14:25:24 -04:00
README.rst doc: update doc generation instructions 2018-04-25 05:55:03 +05:30
Zephyr-Kite-in-tree.png doc: add custom 404 page 2017-08-18 21:41:45 -04:00
conf.py doc: sphinx: Add Pygment lexer for DTS 2018-03-23 08:16:49 -04:00
copyright.rst doc: update copyright for documentation 2017-01-31 21:35:29 +00:00
glossary.rst doc: Convert bits and pieces to CMake 2017-11-12 15:51:24 -05:00
index.rst doc: change https://zephyrproject.org/doc refs 2018-05-02 18:32:44 -04:00
release-notes-1.5.rst doc: update to use macOS throughout docs 2017-09-15 17:21:47 -04:00
release-notes-1.6.rst doc: spelling fixes in docs 2017-08-02 15:14:13 -04:00
release-notes-1.7.rst doc: spelling fixes in docs 2017-08-02 15:14:13 -04:00
release-notes-1.8.rst doc: spelling fixes in docs 2017-08-02 15:14:13 -04:00
release-notes-1.9.rst doc: 1.9.x release notes 2017-10-28 13:44:24 -04:00
release-notes-1.10.rst release: update release notes for 1.10 2017-12-08 13:05:26 -05:00
release-notes-1.11.rst release: Update release notes with GitHub issues 2018-03-09 23:24:18 +01:00
release-notes-1.12.rst doc: DRAFT start for 1.12 release notes 2018-05-03 11:03:20 -05:00
release-notes.rst doc: add 1.11 links for docs and release notes 2018-03-04 21:16:10 +01:00
zephyr.doxyfile doc: flatten doxygen-generated HTML structure 2018-05-09 09:53:04 -04:00

README.rst

.. _zephyr_doc:

Zephyr documentation Generation
###############################

These instructions will walk you through generating the Zephyr Project's
documentation on your local system using the same documentation sources
as we use to create the online documentation found at
http://docs.zephyrproject.org

Documentation overview
**********************

Zephyr Project content is written using the reStructuredText markup
language (.rst file extension) with Sphinx extensions, and processed
using Sphinx to create a formatted stand-alone website. Developers can
view this content either in its raw form as .rst markup files, or you
can generate the HTML content and view it with a web browser directly on
your workstation. This same .rst content is also fed into the Zephyr
Project's public website documentation area (with a different theme
applied).

You can read details about `reStructuredText`_, and `Sphinx`_ from
their respective websites.

The project's documentation contains the following items:

* ReStructuredText source files used to generate documentation found at the
  http://docs.zephyrproject.org website. Most of the reStructuredText sources
  are found in the ``/doc`` directory, but others are stored within the
  code source tree near their specific component (such as ``/samples`` and
  ``/boards``)

* Doxygen-generated material used to create all API-specific documents
  also found at http://docs.zephyrproject.org

* Script-generated material for kernel configuration options based on Kconfig
  files found in the source code tree

The reStructuredText files are processed by the Sphinx documentation system,
and make use of the breathe extension for including the doxygen-generated API
material.  Additional tools are required to generate the
documentation locally, as described in the following sections.

Installing the documentation processors
***************************************

Our documentation processing has been tested to run with:

* Doxygen version 1.8.13
* Sphinx version 1.6.7
* Breathe version 4.7.3
* docutils version 0.14
* sphinx_rtd_theme version 0.2.4

Begin by cloning a copy of the git repository for the Zephyr project and
setting up your development environment as described in :ref:`getting_started`
or specifically for Ubuntu in :ref:`installation_linux`.

Other than ``doxygen``, the documentation tools should be installed
using ``pip3`` (as documented in the development environment set up
instructions).

The documentation generation tools are included in the set of tools
expected for the Zephyr build environment and so are included in
``requirements.txt``

Documentation presentation theme
********************************

Sphinx supports easy customization of the generated documentation
appearance through the use of themes.  Replace the theme files and do
another ``make htmldocs`` and the output layout and style is changed.
The ``read-the-docs`` theme is installed as part of the
``requirements.txt`` list above, and will be used if it's available, for
local doc generation.


Running the documentation processors
************************************

The ``/doc`` directory in your cloned copy of the Zephyr project git
repo has all the .rst source files, extra tools, and Makefile for
generating a local copy of the Zephyr project's technical documentation.
Assuming the local Zephyr project copy is ``~/zephyr``, here are the
commands to generate the html content locally:

.. code-block:: bash

   $ cd ~/zephyr
   $ source zephyr-env.sh
   $ make htmldocs

Depending on your development system, it will take about 15 minutes to
collect and generate the HTML content.  When done, you can view the HTML
output with your browser started at ``~/zephyr/doc/_build/html/index.html``

Filtering expected warnings
***************************

Alas, there are some known issues with the doxygen/Sphinx/Breathe
processing that generates warnings for some constructs, in particular
around unnamed structures in nested unions or structs.
While these issues are being considered for fixing in
Sphinx/Breathe, we've added a post-processing filter on the output of
the documentation build process to check for "expected" messages from the
generation process output.

The output from the Sphinx build is processed by the python script
``scripts/filter-known-issues.py`` together with a set of filter
configuration files in the ``.known-issues/doc`` folder.  (This
filtering is done as part of the ``doc/Makefile``.)

If you're contributing components included in the Zephyr API
documentation and run across these warnings, you can include filtering
them out as "expected" warnings by adding a conf file to the
``.known-issues/doc`` folder, following the example of other conf files
found there.

.. _reStructuredText: http://sphinx-doc.org/rest.html
.. _Sphinx: http://sphinx-doc.org/