zephyr/doc
Carles Cufi 6f7adbde02 doc: Switch to MSYS2's dtc package
After Andy Gross submitted a package for the Device Tree Compiler
(dtc), and it has now become available on the MSYS2 package
repository, it's no longer needed for the user to manually compile
the DTC.

Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
2017-08-01 08:28:07 -04:00
..
api net: doc: Add missing defgroups to network header files 2017-07-31 20:59:09 +03:00
application doc: update qemu_x86 instructions 2017-06-28 16:58:37 -04:00
contribute doc: add CONTRIBUTING.rst to project repo and docs 2017-07-30 20:41:43 -04:00
crypto
drivers doc: remove links to wiki 2017-05-31 14:54:34 -04:00
dts doc: fix headings in device tree doc 2017-06-19 17:45:27 -04:00
getting_started doc: Switch to MSYS2's dtc package 2017-08-01 08:28:07 -04:00
introduction
kernel doc: update source tree structure documentation 2017-07-13 10:09:55 -05:00
porting doc: fix misspellings in docs 2017-06-13 19:45:38 -04:00
reference/kconfig
scripts doc: output alphabetic Kconfig options index 2017-07-20 13:48:11 -07:00
static
subsystems doc: system_log: Fix global Kconfig options path 2017-07-23 07:01:18 -04:00
templates
themes/zephyr
tools doc: Update OpenSDA doc to reflect new OPENSDA_FW variable 2017-07-19 14:28:08 -05:00
LICENSING.rst
Makefile doc: tweak Sphinx linkcheck options 2017-04-28 00:44:40 +00:00
README.rst doc: add python pip requirements.txt 2017-07-22 14:04:20 -04:00
conf.py doc: change UTF-8 chars to sphinx inline replaces 2017-06-16 07:35:11 -05:00
copyright.rst
glossary.rst
index.rst doc: add CONTRIBUTING.rst to project repo and docs 2017-07-30 20:41:43 -04:00
release-notes-1.5.rst doc: misspelling and UTF-8 fixes 2017-05-09 20:15:49 -04:00
release-notes-1.6.rst
release-notes-1.7.rst doc: fix broken link in 1.7 release notes 2017-04-27 15:19:26 -07:00
release-notes-1.8.rst doc: add 1.8 release notes 2017-06-16 08:47:59 -04:00
release-notes-1.9.rst doc: add placeholder for 1.9 release notes 2017-07-07 10:50:45 -05:00
release-notes.rst doc: update release-notes index page 2017-06-16 21:01:00 -04:00
zephyr.doxyfile

README.rst

:orphan:

Welcome to Zephyr Kernel
########################

.. This document is in Restructured Text Format.
   Find more information regarding the ReST markup in the
   `ReST documentation`_.
   This is a comment that won't show up in formatted output

Welcome to the Zephyr Project.

Thank you for your interest in the Zephyr Project. These instructions are
designed to walk you through generating the Zephyr Project's documentation.

Documentation Notes
*******************

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 workstations drive. 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 about Sphinx extensions from
their respective websites.

The project's documentation currently comprises the following items:

* ReStructuredText source files used to generate documentation found at
  https://zephyrproject.org/doc website. Most of the reStructuredText sources
  are found in the ``/doc`` directory, but there are others 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 https://zephyrproject.org/doc

* 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.10 (and 1.8.11)
* Sphinx version 1.4.4 (but not with 1.5.1)
* Breathe version 4.4.0
* docutils version 0.12 (0.13 has issues with Sphinx 1.4.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`.  (Be sure to
export the environment variables ``ZEPHYR_GCC_VARIANT`` and
``ZEPHYR_SDK_INSTALL_DIR`` as documented there.)

Here are a set of commands to install the documentation generations tools on
Ubuntu:

.. code-block:: bash

   $ sudo -E apt-get install doxygen
   $ curl -O 'https://bootstrap.pypa.io/get-pip.py'
   $ ./get-pip.py
   $ rm get-pip.py
   $ pip install -r scripts/requirements.txt


Running the Documentation Generators
************************************

The ``/doc`` directory in your cloned copy of 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

The html output will be in ``~/zephyr/doc/_build/html/index.html``


.. _ReST documentation: http://sphinx-doc.org/rest.html