[FE training-materials-updates] Replace "setup" by "set up" in some cases

Michael Opdenacker michael.opdenacker at free-electrons.com
Wed Oct 22 08:29:59 CEST 2014


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

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

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

commit a0f3a1c710d88d19f8577da6caba25e8b6ab3d16
Author: Michael Opdenacker <michael.opdenacker at free-electrons.com>
Date:   Wed Oct 22 08:29:19 2014 +0200

    Replace "setup" by "set up" in some cases
    
    Signed-off-by: Michael Opdenacker <michael.opdenacker at free-electrons.com>


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

a0f3a1c710d88d19f8577da6caba25e8b6ab3d16
 agenda/kernel-agenda.tex                                                | 2 +-
 labs/android-new-board/android-new-board.tex                            | 2 +-
 labs/android-system-customization/android-system-customization.tex      | 2 +-
 labs/kernel-i2c-communication/kernel-i2c-communication.tex              | 2 +-
 labs/kernel-module-simple/kernel-module-simple.tex                      | 2 +-
 .../android-build-system-basics-envsetup.tex                            | 2 +-
 slides/kernel-git-content/kernel-git-content.tex                        | 2 +-
 slides/sysdev-busybox/sysdev-busybox.tex                                | 2 +-
 8 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/agenda/kernel-agenda.tex b/agenda/kernel-agenda.tex
index b493cdb..f0892ab 100644
--- a/agenda/kernel-agenda.tex
+++ b/agenda/kernel-agenda.tex
@@ -240,7 +240,7 @@ Embedded Linux kernel and driver development training\\
   \begin{itemize}
   \item Write a kernel module with several capabilities.
   \item Access kernel internals from your module.
-  \item Setup the environment to compile it
+  \item Set up the environment to compile it
   \end{itemize}
 }
 
diff --git a/labs/android-new-board/android-new-board.tex b/labs/android-new-board/android-new-board.tex
index fc3fbc8..af2eabf 100644
--- a/labs/android-new-board/android-new-board.tex
+++ b/labs/android-new-board/android-new-board.tex
@@ -272,7 +272,7 @@ at revision \code{ti_sgx_sdk-ddk_1.10-jb-4.3-fe}, and store it in
 \code{hardware/ti/sgx}.
 
 Once done, open up a new terminal, download it using \code{repo}. Now,
-setup the path to use the Android toolchain.
+set up the path to use the Android toolchain.
 
 \begin{verbatim}
 export PATH=$(pwd)/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/bin:$PATH
diff --git a/labs/android-system-customization/android-system-customization.tex b/labs/android-system-customization/android-system-customization.tex
index 6258a37..92f462e 100644
--- a/labs/android-system-customization/android-system-customization.tex
+++ b/labs/android-system-customization/android-system-customization.tex
@@ -8,7 +8,7 @@ After this lab, you will be able to:
   \item Use the product overlays
 \end{itemize}
 
-\section{Setup a new product}
+\section{Set up a new product}
 
 From now on, we're going to use a product of our own, so that we don't
 have to modify the pre-existing \code{beagleboneblack} product to suit
diff --git a/labs/kernel-i2c-communication/kernel-i2c-communication.tex b/labs/kernel-i2c-communication/kernel-i2c-communication.tex
index 01303a1..aa42b54 100644
--- a/labs/kernel-i2c-communication/kernel-i2c-communication.tex
+++ b/labs/kernel-i2c-communication/kernel-i2c-communication.tex
@@ -208,7 +208,7 @@ In the probe routine (run every time a matching device is found):
         writing. The address, \code{0x52} is sent by the i2c framework
         so you only have to write the other bytes, the register
         address and if needed, the value you want to write. There are
-        two ways to setup the communication. The first known way was
+        two ways to set up the communication. The first known way was
         with data encryption by writing \code{0x00} to register
         \code{0x40} of the nunchuk.  With this way, you have to
         decrypt each byte you read from the nunchuk (not so hard but
diff --git a/labs/kernel-module-simple/kernel-module-simple.tex b/labs/kernel-module-simple/kernel-module-simple.tex
index 485645f..0ac1848 100644
--- a/labs/kernel-module-simple/kernel-module-simple.tex
+++ b/labs/kernel-module-simple/kernel-module-simple.tex
@@ -6,7 +6,7 @@ After this lab, you will be able to:
 \item Compile and test standalone kernel modules, which code is outside of the main Linux sources.
 \item Write a kernel module with several capabilities, including module parameters.
 \item Access kernel internals from your module.
-\item Setup the environment to compile it.
+\item Set up the environment to compile it.
 \item Create a kernel patch.
 \end{itemize}
 
diff --git a/slides/android-build-system-basics-envsetup/android-build-system-basics-envsetup.tex b/slides/android-build-system-basics-envsetup/android-build-system-basics-envsetup.tex
index 6efd813..0c6784e 100644
--- a/slides/android-build-system-basics-envsetup/android-build-system-basics-envsetup.tex
+++ b/slides/android-build-system-basics-envsetup/android-build-system-basics-envsetup.tex
@@ -8,7 +8,7 @@
   \item It adds many useful shell macros
   \item These macros will serve several purposes:
     \begin{itemize}
-    \item Configure and setup the build system
+    \item Configure and set up the build system
     \item Ease the navigation in the source code
     \item Ease the development process
     \end{itemize}
diff --git a/slides/kernel-git-content/kernel-git-content.tex b/slides/kernel-git-content/kernel-git-content.tex
index 6887a6a..a46b750 100644
--- a/slides/kernel-git-content/kernel-git-content.tex
+++ b/slides/kernel-git-content/kernel-git-content.tex
@@ -33,7 +33,7 @@
     \item Help can be found for a given command using
       \code{git help <command>}
     \end{itemize}
-  \item Setup your name and e-mail address
+  \item Set up your name and e-mail address
     \begin{itemize}
     \item They will be referenced in each of your commits
     \item \code{git config --global user.name 'My Name'}
diff --git a/slides/sysdev-busybox/sysdev-busybox.tex b/slides/sysdev-busybox/sysdev-busybox.tex
index 1d42414..60a0605 100644
--- a/slides/sysdev-busybox/sysdev-busybox.tex
+++ b/slides/sysdev-busybox/sysdev-busybox.tex
@@ -149,7 +149,7 @@
   \item Create and configure a minimalistic Linux embedded system
   \item Install and use BusyBox
   \item System startup with \code{/sbin/init}
-  \item Setup a simple web interface
+  \item Set up a simple web interface
   \item Use shared libraries
   \end{itemize}
 }



More information about the training-materials-updates mailing list