summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Gielda <mgielda@antmicro.com>2014-04-03 16:06:38 +0200
committerMichael Gielda <mgielda@antmicro.com>2014-04-03 16:06:38 +0200
commit40988fecc1da1a65d5a8dd16c90f0e7c46c06b7e (patch)
treee9b1d801b3f589b912d30a788240fbe6153eaa8a
parenta1ec8a1ed46349b7b98c17f3121a47c7a9a033a4 (diff)
Update introduction.rst
-rw-r--r--doc/source/introduction.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/source/introduction.rst b/doc/source/introduction.rst
index 741f7de..af390ab 100644
--- a/doc/source/introduction.rst
+++ b/doc/source/introduction.rst
@@ -159,7 +159,7 @@ A short shell script is proposed to make the compilation process easier:
rm -rf build/*
cd build
- ecosconfig --config=../ecos.ecc tree
+ ecosconfig --config={path/to}/ecos.ecc tree # modify this
make
The resulting kernel files can be found in :file:`build/install/lib`.
@@ -198,7 +198,7 @@ You can compile an eCos program with a procedure similar to the following listin
-mcpu=cortex-m4"
# Set path to eCos kernel
- KPATH="{path/to/kernel}/build" # modify this
+ export KPATH="{path/to/kernel}/build" # modify this
# Do compilation and link your application with kernel
arm-eabi-gcc -g -I./ -g -I${KPATH}/install/include hello.c \