summaryrefslogtreecommitdiffstats
path: root/rtemsconfig (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-02-15Use pathto() on the genindex URL to make it relative.Chris Johns1-5/+0
2019-02-13waf: Remove as many sys path hacks as we can.Chris Johns1-11/+7
There are still sys.path hacks in the conf.py files. They cannot be removed because the instance of python running the sphinx-build command does not see our top level path hacks. I looked at using PYTHONPATH but I could not figure out how to set a process environ var for a waf build instance.
2019-02-08build: Prepend project common pathSebastian Huber2-2/+2
This avoids conflicts with standard packages such as PIL (Python Imaging Library).
2019-01-11Simplify SPDX-License-Identifier commentSebastian Huber3-3/+3
2017-03-27waf: Cleaner formatting to see the importing.Chris Johns1-12/+7
2017-03-20Use a single top level version number.Chris Johns1-5/+5
2016-05-20Set SPDX License Identifier in each source file.Chris Johns3-0/+6
2016-05-02Add PDF generation support use with --pdfAmar Takhar1-0/+4
2016-05-02Add support for spellchecking with a custom dictionary.Amar Takhar1-1/+1
To use: 1. Install aspell 2. waf spell <list of files> * waf spell mydoc.rst * waf spell *.rst This uses a custom dictionary stored in common/spell/dict/. We should add all RTEMS and programming terms to this to ensure we are consistent. Amar.
2016-05-02Rework how conf.py is handled.Amar Takhar2-21/+12
Needed to switch due to increasing complexity.
2016-05-02Fix rtemsconfig building.Amar Takhar1-0/+14
I'll probably move to a more pythonic way of doing conf.py since this is getting too complicated.