summaryrefslogtreecommitdiffstats
path: root/user/conf.py
blob: a97b81a9a76599d038fa9147e046871fa0c48a78 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import sys, os
sys.path.append(os.path.abspath('../common/'))

from conf import *

project = "RTEMS User Manual"

exclude_patterns = ['config/build.rst',
                    'config/runtime.rst',

                    'start/quick.rst',

                    'hosts/os.rst',
                    'hosts/prefixes.rst',
                    'hosts/macos.rst',
                    'hosts/posix.rst',
                    'hosts/windows.rst',

                    'installation/prefixes-sandboxing.rst',
                    'installation/releases.rst',
                    'installation/developer.rst',
                    'installation/kernel.rst',

                    'hardware/targets.rst',
                    'hardware/architectures.rst',
                    'hardware/bsps.rst',
                    'hardware/tiers.rst',

                    'tools/build.rst',
                    'tools/simulation.rst',

                    'test/create.rst',
                    'test/running.rst',
                    'start/installation.rst',
                    'start/transition.rst',

                    'waf/index.rst']

latex_documents = [
    ('index',
     'user.tex',
     u'RTEMS User Manual',
     u'RTEMS Documentation Project',
     'manual'),
]