nuttx-apps/system/install
2014-04-13 16:24:28 -06:00
..
.gitignore .dSYM only needs to be in the same .gitignore files as .exe 2013-05-30 15:02:04 -06:00
install.c Make sure that there is one space between while and condition 2014-04-12 13:09:48 -06:00
Kconfig Developing a new way to handle application configurations 2012-04-14 20:01:08 +00:00
Makefile More trailing whilespace removal 2014-04-13 16:24:28 -06:00
README.txt More trailing whilespace removal 2014-04-13 16:24:28 -06:00

Install Program
===============

    Source: NuttX
    Author: Uros Platise
    Date: 7. May 2011

This application installs XIP application by placing it directly into
the program memory (flash) area into free area and creates a start-up
script into selected directory (i.e. /usr/bin/progname).

Usage:
    install [--stack RequiredStackSpace] [--priority Priority]
            source-file destination-directory

If stackspace is not given default stack space of 4096 Bytes is used.
If priority is not given system default is used.

Additional options:

    --remove destination-file   i.e. install --remove /usr/bin/myapp
    --force                     to replace existing installation
    --start <page>              install app at or after <page>
    --margin <pages>            leave some free space after the kernel
                                Default is 16 pages so kernel may grow.