forked from Imagelibrary/rtems
PR 1793/doc * .cvsignore, Makefile.am, README, configure.ac, index.html.in, main.am, project.am, ada_user/.cvsignore, ada_user/ada_user.texi, ada_user/example.texi, bsp_howto/.cvsignore, bsp_howto/bsp_howto.texi, cpu_supplement/.cvsignore, cpu_supplement/cpu_supplement.texi, cpu_supplement/preface.texi, develenv/.cvsignore, develenv/develenv.texi, develenv/intro.texi, filesystem/.cvsignore, filesystem/filesystem.texi, filesystem/preface.texi, networking/.cvsignore, networking/networking.texi, networking/preface.texi, porting/.cvsignore, porting/porting.texi, porting/preface.texi, posix1003.1/.cvsignore, posix1003.1/posix1003_1.texi, posix_users/.cvsignore, posix_users/posix_users.texi, posix_users/preface.texi, shell/.cvsignore, shell/preface.texi, shell/shell.texi, started/.cvsignore, started/started.texi, user/.cvsignore, user/c_user.texi, user/dirstat.texi, user/example.texi, user/glossary.texi, user/preface.texi: Convert from texi2www to texi2html. * texi2html_init.in: New file. * rtems_footer.html.in, rtems_header.html.in: Removed.
57 lines
2.1 KiB
Plaintext
57 lines
2.1 KiB
Plaintext
@c
|
|
@c COPYRIGHT (c) 1989-2011.
|
|
@c On-Line Applications Research Corporation (OAR).
|
|
@c All rights reserved.
|
|
@c
|
|
@c $Id$
|
|
@c
|
|
|
|
@node Introduction, Directory Structure, Top, Top
|
|
@chapter Introduction
|
|
|
|
This document describes the RTEMS development
|
|
environment. Discussions are provided for the following topics:
|
|
|
|
@itemize @bullet
|
|
@item the directory structure used by RTEMS,
|
|
|
|
@item usage of the GNU Make utility within the RTEMS
|
|
development environment,
|
|
|
|
@item sample applications, and
|
|
|
|
@item the RTEMS specific utilities.
|
|
@end itemize
|
|
|
|
RTEMS was designed as a reusable software component.
|
|
Highly reusable software such as RTEMS is typically distributed
|
|
in the form of source code without providing any support tools.
|
|
RTEMS is the foundation for a complex family of facilities
|
|
including board support packages, device drivers, and support
|
|
libraries. The RTEMS Development Environment is not a CASE
|
|
tool. It is a collection of tools designed to reduce the
|
|
complexity of using and enhancing the RTEMS family. Tools are
|
|
provided which aid in the management of the development,
|
|
maintenance, and usage of RTEMS, its run-time support
|
|
facilities, and applications which utilize the executive.
|
|
|
|
A key component of the RTEMS development environment
|
|
is the GNU family of free tools. This is robust set of
|
|
development and POSIX compatible tools for which source code is
|
|
freely available. The primary compilers, assemblers, linkers,
|
|
and make utility used by the RTEMS development team are the GNU
|
|
tools. They are highly portable supporting a wide variety of
|
|
host computers and, in the case of the development tools, a wide
|
|
variety of target processors.
|
|
|
|
It is recommended that the RTEMS developer become
|
|
familiar with the RTEMS Development Environment before
|
|
proceeding with any modifications to the executive source tree.
|
|
The source code for the executive is very modular and source
|
|
code is divided amongst directories based upon functionality as
|
|
well as dependencies on CPU and target board. This organization
|
|
is aimed at isolating and minimizing non-portable code. This
|
|
has the immediate result that adding support for a new CPU or
|
|
target board requires very little "wandering" around the source
|
|
tree.
|