[FE training-materials-updates] sysdev: Move the realtime folder into sysdev

Maxime Ripard maxime.ripard at free-electrons.com
Tue Jul 22 18:32:03 CEST 2014


Repository : git://git.free-electrons.com/training-materials.git

On branch  : master
Link       : http://git.free-electrons.com/training-materials/commit/?id=bda943b59f6d6bfac4dc50bd74a64d1a13be1cf6

>---------------------------------------------------------------

commit bda943b59f6d6bfac4dc50bd74a64d1a13be1cf6
Author: Maxime Ripard <maxime.ripard at free-electrons.com>
Date:   Tue Jul 22 16:19:26 2014 +0200

    sysdev: Move the realtime folder into sysdev
    
    Signed-off-by: Maxime Ripard <maxime.ripard at free-electrons.com>


>---------------------------------------------------------------

bda943b59f6d6bfac4dc50bd74a64d1a13be1cf6
 ...buildroot-2013.02-bump-xenomai-to-2.6.2.1.patch |    0
 ...in-wrapper-fix-paths-if-executable-was-re.patch |    0
 lab-data/{ => sysdev}/realtime/rttest/data/doload  |    0
 .../data/linux-3.5.7-igepv2-fix-pinmux.patch       |    0
 .../{ => sysdev}/realtime/rttest/data/netcat.data  |    0
 .../{ => sysdev}/realtime/rttest/data/rttest.c     |    0
 labs/sysdev-real-time/sysdev-real-time.tex         |   12 ++++++------
 7 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/lab-data/realtime/rttest/data/buildroot-2013.02-bump-xenomai-to-2.6.2.1.patch b/lab-data/sysdev/realtime/rttest/data/buildroot-2013.02-bump-xenomai-to-2.6.2.1.patch
similarity index 100%
rename from lab-data/realtime/rttest/data/buildroot-2013.02-bump-xenomai-to-2.6.2.1.patch
rename to lab-data/sysdev/realtime/rttest/data/buildroot-2013.02-bump-xenomai-to-2.6.2.1.patch
diff --git a/lab-data/realtime/rttest/data/buildroot-2013.02-ext-toolchain-wrapper-fix-paths-if-executable-was-re.patch b/lab-data/sysdev/realtime/rttest/data/buildroot-2013.02-ext-toolchain-wrapper-fix-paths-if-executable-was-re.patch
similarity index 100%
rename from lab-data/realtime/rttest/data/buildroot-2013.02-ext-toolchain-wrapper-fix-paths-if-executable-was-re.patch
rename to lab-data/sysdev/realtime/rttest/data/buildroot-2013.02-ext-toolchain-wrapper-fix-paths-if-executable-was-re.patch
diff --git a/lab-data/realtime/rttest/data/doload b/lab-data/sysdev/realtime/rttest/data/doload
similarity index 100%
rename from lab-data/realtime/rttest/data/doload
rename to lab-data/sysdev/realtime/rttest/data/doload
diff --git a/lab-data/realtime/rttest/data/linux-3.5.7-igepv2-fix-pinmux.patch b/lab-data/sysdev/realtime/rttest/data/linux-3.5.7-igepv2-fix-pinmux.patch
similarity index 100%
rename from lab-data/realtime/rttest/data/linux-3.5.7-igepv2-fix-pinmux.patch
rename to lab-data/sysdev/realtime/rttest/data/linux-3.5.7-igepv2-fix-pinmux.patch
diff --git a/lab-data/realtime/rttest/data/netcat.data b/lab-data/sysdev/realtime/rttest/data/netcat.data
similarity index 100%
rename from lab-data/realtime/rttest/data/netcat.data
rename to lab-data/sysdev/realtime/rttest/data/netcat.data
diff --git a/lab-data/realtime/rttest/data/rttest.c b/lab-data/sysdev/realtime/rttest/data/rttest.c
similarity index 100%
rename from lab-data/realtime/rttest/data/rttest.c
rename to lab-data/sysdev/realtime/rttest/data/rttest.c
diff --git a/labs/sysdev-real-time/sysdev-real-time.tex b/labs/sysdev-real-time/sysdev-real-time.tex
index dafc4af..42c2940 100644
--- a/labs/sysdev-real-time/sysdev-real-time.tex
+++ b/labs/sysdev-real-time/sysdev-real-time.tex
@@ -13,7 +13,7 @@ POSIX real-time API, and against Xenomai's POSIX skin.
 
 \section{Setup}
 
-Go to the \code{$HOME/felabs/realtime/rttest} directory.
+Go to the \code{$HOME/felabs/sysdev/realtime/rttest} directory.
 
 If you are using a 64 bit installation of Ubuntu, install support for
 executables built with a 32 bit C library:
@@ -139,7 +139,7 @@ Let's configure our \code{PATH} to use this toolchain:
 
 \begin{verbatim}
 export
-PATH=$HOME/felabs/realtime/rttest/buildroot-2013.02/output/host/usr/bin:$PATH
+PATH=$HOME/felabs/sysdev/realtime/rttest/buildroot-2013.02/output/host/usr/bin:$PATH
 \end{verbatim}
 
 Have a look at the \code{rttest.c} source file available in \code{root/} in
@@ -191,7 +191,7 @@ the results.
 
 Prepare the kernel for Xenomai compilation:
 \begin{verbatim}
-cd $HOME/felabs/realtime/rttest/buildroot-2013.02/
+cd $HOME/felabs/sysdev/realtime/rttest/buildroot-2013.02/
 ./output/build/xenomai-2.6.2.1/scripts/prepare-kernel.sh \
    --arch=arm --linux=/path/to/linux-3.5.7
 \end{verbatim}
@@ -212,7 +212,7 @@ source directory, and force Buildroot to build the host variant of
 {\em pkg-config}:
 
 \begin{verbatim}
-cd $HOME/felabs/realtime/rttest/buildroot-2013.02/
+cd $HOME/felabs/sysdev/realtime/rttest/buildroot-2013.02/
 make host-pkgconf
 \end{verbatim}
 
@@ -221,8 +221,8 @@ compile \code{rttest} for the Xenomai POSIX skin:
 
 \small
 \begin{verbatim}
-cd $HOME/felabs/realtime/rttest/nfsroot/root
-export PATH=$HOME/felabs/realtime/rttest/buildroot-2013.02/output/host/usr/bin:$PATH
+cd $HOME/felabs/sysdev/realtime/rttest/nfsroot/root
+export PATH=$HOME/felabs/sysdev/realtime/rttest/buildroot-2013.02/output/host/usr/bin:$PATH
 arm-none-linux-gnueabi-gcc -o rttest rttest.c $(pkg-config --libs --cflags libxenomai_posix)
 \end{verbatim}
 \normalsize



More information about the training-materials-updates mailing list