source: rtems-release/README-doc.txt.in @ ecf3904

5
Last change on this file since ecf3904 was ecf3904, checked in by Chris Johns <chrisj@…>, on 09/04/16 at 02:55:55

Documentation is not built for some versions.

  • Property mode set to 100644
File size: 3.4 KB
Line 
1RTEMS Embedded Realtime Operating System
2----------------------------------------
3
4Release: @RELEASE@
5Date   : @DATE@
6
7The Real-Time Executive for Multiprocessor Systems or RTEMS is an open source
8Real Time Operating System (RTOS) that supports open standard application
9programming interfaces (API) such as POSIX. It is used in space flight,
10medical, networking and many more embedded devices using processor
11architectures including ARM, PowerPC, Intel, Blackfin, MIPS, Microblaze and
12more.
13
14This directory contains the source code for the RTEMS @VERSION@ operating
15system and tools. Please refer to the RTEMS Developers Wiki for the release
16notes.
17
18Please drop by the Users mailing list (users@rtems.org) and let us know how you
19are using RTEMS. We love hearing about user's projects.
20
21Many thanks to everyone who helped create this release.
22
23Regards
24The RTEMS Development Team.
25
26RTEMS Web Sites
27~~~~~~~~~~~~~~~
28
29      Home: https://www.rtems.org/
30Developers: https://devel.rtems.org/
31      Docs: https://docs.rtems.org/
32       Bug: https://devel.rtems.org/query
33     Lists: https://lists.rtems.org/
34       GIT: https://git.rtems.org/
35
36Release Files
37~~~~~~~~~~~~~
38
39 - README.txt                                   This document.
40 - contrib                                      Directory contains extra release related files.
41 - rtems-@RELEASE@.tar.xz                       The RTEMS kernel source code.
42 - rtems-source-builder-@RELEASE@.tar.xz        The RTEMS Source Builder source code.
43 - rtems-tools-@RELEASE@.tar.xz         The RTEMS Tools source code.
44 - rtems-docs-@RELEASE@.tar.xz          The RTEMS Documentation source.
45 - sha512sum.txt                                The SHA512 checksums for this directory.
46 - docs                                         The generated RTEMS documentation.
47 - sources                                      The source code the tools for this release.
48
49RTEMS Documentation
50~~~~~~~~~~~~~~~~~~~
51
52The generated documentation can be found in the `docs` directory.
53
54The following manuals are available as compress HTML tar files or PDF:
55
56 - RTEMS User Manual
57  - docs/rtems-docs-@RELEASE@-user.pdf
58  - docs/rtems-docs-@RELEASE@-user-html.tar.xz
59
60 - RTEMS C User Manual
61  - docs/rtems-docs-@RELEASE@-c-user.pdf
62  - docs/rtems-docs-@RELEASE@-c-user-html.tar.xz
63
64 - RTEMS POSIX User Manual
65  - docs/rtems-docs-@RELEASE@-posix-user.pdf
66  - docs/rtems-docs-@RELEASE@-posix-user-html.tar.xz
67
68 - RTEMS Networking User Manual
69  - docs/rtems-docs-@RELEASE@-networking.pdf
70  - docs/rtems-docs-@RELEASE@-networking-html.tar.xz
71
72 - RTEMS Shell User Manual
73  - docs/rtems-docs-@RELEASE@-shell.pdf
74  - docs/rtems-docs-@RELEASE@-shell-html.tar.xz
75
76Quick Guide to Building
77~~~~~~~~~~~~~~~~~~~~~~~
78
79To build the tools and kernel for an architecture download:
80
81  rtems-source-builder-@RELEASE@.tar.xz
82
83Please check to the RSB documentation (https://docs.rtems.org/rsb/) and the
84Wiki (TBD) if you have any issues.
85
86If you encounter a problem please post to the user@rtems.org mailing list and
87if you find a bug please raise a ticket (https://devel.rtems.org/newticket).
88
89The following builds RTEMS for the SPARC architecture:
90
91 $ cd
92 $ mkdir development/rtems
93 $ cd development/rtems
94 $ tar Jxf rtems-source-builder-@RELEASE@.tar.xz
95 $ cd rtems-source-builder-@RELEASE@/rtems
96 $ ../source-builder/sb-set-builder \
97         --prefix=$HOME/development/rtems/@RELEASE@ \
98         @VERSION@/rtems-sparc
99
100To disable building the RTEMS Kernel add to the command line '--without-rtems'.
101
102To build a single BSP add to the command line '--with-rtemsbsp'. You can
103specify more than one BSP with quotes and a space delimiting the BSP names. By
104default all BSPs for an architecture are built.
Note: See TracBrowser for help on using the repository browser.