[bootlin/training-materials updates] master: embedded-linux: fix mix typos (abd91a1d)

Michael Opdenacker michael.opdenacker at bootlin.com
Tue Oct 4 18:41:00 CEST 2022


Repository : https://github.com/bootlin/training-materials
On branch  : master
Link       : https://github.com/bootlin/training-materials/commit/abd91a1dabf4a58e022adb4432438e84de1e5433

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

commit abd91a1dabf4a58e022adb4432438e84de1e5433
Author: Michael Opdenacker <michael.opdenacker at bootlin.com>
Date:   Tue Oct 4 18:41:00 2022 +0200

    embedded-linux: fix mix typos
    
    Signed-off-by: Michael Opdenacker <michael.opdenacker at bootlin.com>
    Reported-by: Wolfgang Wallner <wolfgang.wallner at br-automation.com>


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

abd91a1dabf4a58e022adb4432438e84de1e5433
 labs/sysdev-accessing-hardware/sysdev-accessing-hardware.tex     | 4 ++--
 slides/kernel-device-model/kernel-device-model.tex               | 2 +-
 slides/sysdev-block-filesystems/sysdev-block-filesystems.tex     | 2 +-
 slides/sysdev-flash-filesystems/sysdev-flash-filesystems.tex     | 4 ++--
 slides/sysdev-hw-devices/sysdev-hw-devices.tex                   | 2 +-
 slides/sysdev-licensing/sysdev-licensing.tex                     | 2 +-
 slides/sysdev-linux-intro-sources/sysdev-linux-intro-sources.tex | 2 +-
 slides/sysdev-software-stacks/sysdev-software-stacks.tex         | 2 +-
 8 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/labs/sysdev-accessing-hardware/sysdev-accessing-hardware.tex b/labs/sysdev-accessing-hardware/sysdev-accessing-hardware.tex
index 1ed0ea47..503a1f45 100644
--- a/labs/sysdev-accessing-hardware/sysdev-accessing-hardware.tex
+++ b/labs/sysdev-accessing-hardware/sysdev-accessing-hardware.tex
@@ -1,5 +1,5 @@
 \subchapter{Accessing Hardware Devices}
-{Objectif: learn how to access hardware devices and declare new ones.}
+{Objective: learn how to access hardware devices and declare new ones.}
 
 \section{Goals}
 
@@ -145,7 +145,7 @@ find that GPIO bank E corresponds to \code{gpiochip4} and to GPIO
 numbers 64 to 79. Hence, PE1, the second pin on this bank corresponds to
 GPIO number 65.
 
-We know have everything we need to drive this GPIO using the legacy
+We now have everything we need to drive this GPIO using the legacy
 interface. First, let's enable it:
 
 \begin{bashinput}
diff --git a/slides/kernel-device-model/kernel-device-model.tex b/slides/kernel-device-model/kernel-device-model.tex
index 680ce535..a306b11d 100644
--- a/slides/kernel-device-model/kernel-device-model.tex
+++ b/slides/kernel-device-model/kernel-device-model.tex
@@ -970,7 +970,7 @@ examples:
 
 \begin{frame}{Validating Device Tree in Linux}
   \begin{itemize}
-  \item \code{dtc} only does syntaxic validation
+  \item \code{dtc} only does syntactic validation
   \item YAML bindings allow to do semantic validation
   \item Linux kernel \code{make} rules:
     \begin{itemize}
diff --git a/slides/sysdev-block-filesystems/sysdev-block-filesystems.tex b/slides/sysdev-block-filesystems/sysdev-block-filesystems.tex
index 36237b24..cb354462 100644
--- a/slides/sysdev-block-filesystems/sysdev-block-filesystems.tex
+++ b/slides/sysdev-block-filesystems/sysdev-block-filesystems.tex
@@ -308,7 +308,7 @@ major minor #blocks name
   \frametitle{Mounting filesystem images}
   \begin{itemize}
   \item Once a filesystem image has been created, one can access and
-    modifies its contents from the development workstation, using the
+    modify its contents from the development workstation, using the
     {\bf loop} mechanism:
   \item Example:\\
     \code{mkdir /tmp/tst}\\
diff --git a/slides/sysdev-flash-filesystems/sysdev-flash-filesystems.tex b/slides/sysdev-flash-filesystems/sysdev-flash-filesystems.tex
index 2d5fc7d1..cb3bfe62 100644
--- a/slides/sysdev-flash-filesystems/sysdev-flash-filesystems.tex
+++ b/slides/sysdev-flash-filesystems/sysdev-flash-filesystems.tex
@@ -161,8 +161,8 @@ setenv mtdparts mtdparts=omap2-nand.0:512k(XLoader)ro,1536k(UBoot)ro...
   \begin{itemize}
   \item 'Standard' file systems ({\em ext2}, {\em ext4}...) are
         meant to work on block devices
-  \item Specific file systems have been developed to deal flash
-    constraints
+  \item Specific file systems have been developed to deal with
+        flash constraints
   \item These file systems are relying on the MTD layer to access
     flash chips
   \item There are several legacy flash filesystems which might be
diff --git a/slides/sysdev-hw-devices/sysdev-hw-devices.tex b/slides/sysdev-hw-devices/sysdev-hw-devices.tex
index 3e507d64..1446c075 100644
--- a/slides/sysdev-hw-devices/sysdev-hw-devices.tex
+++ b/slides/sysdev-hw-devices/sysdev-hw-devices.tex
@@ -1420,7 +1420,7 @@ examples:
 
 \begin{frame}{Validating Device Tree in Linux}
   \begin{itemize}
-  \item \code{dtc} only does syntaxic validation
+  \item \code{dtc} only does syntactic validation
   \item YAML bindings allow to do semantic validation
   \item Linux kernel \code{make} rules:
     \begin{itemize}
diff --git a/slides/sysdev-licensing/sysdev-licensing.tex b/slides/sysdev-licensing/sysdev-licensing.tex
index 28280070..e2c8d823 100644
--- a/slides/sysdev-licensing/sysdev-licensing.tex
+++ b/slides/sysdev-licensing/sysdev-licensing.tex
@@ -256,7 +256,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     \begin{itemize}
     \item Requires derivative works to be released under the same
       license
-    \item Source code must redistributed, including modifications
+    \item Source code must be redistributed, including modifications
     \item If GPL code is integrated in your code, your code must now
       be GPL-licensed
     \item Only applies when redistribution takes place
diff --git a/slides/sysdev-linux-intro-sources/sysdev-linux-intro-sources.tex b/slides/sysdev-linux-intro-sources/sysdev-linux-intro-sources.tex
index 8802f2c2..5872496c 100644
--- a/slides/sysdev-linux-intro-sources/sysdev-linux-intro-sources.tex
+++ b/slides/sysdev-linux-intro-sources/sysdev-linux-intro-sources.tex
@@ -40,7 +40,7 @@
     \item Suitable for PoC, not suitable for products on the long term
       as usually no updates are provided to these kernels
     \item Getting stuck with a deprecated system with broken software
-      that cannot be udpated has a real cost in the end
+      that cannot be updated has a real cost in the end
     \end{itemize}
   \item Many kernel sub-communities maintain their own kernel, with
     usually newer but fewer stable features, only for cutting-edge
diff --git a/slides/sysdev-software-stacks/sysdev-software-stacks.tex b/slides/sysdev-software-stacks/sysdev-software-stacks.tex
index 4529529b..5ac87416 100644
--- a/slides/sysdev-software-stacks/sysdev-software-stacks.tex
+++ b/slides/sysdev-software-stacks/sysdev-software-stacks.tex
@@ -123,7 +123,7 @@ WantedBy=multi-user.target
     \end{itemize}
   \item Modern Linux kernel subsystem: {\em DRM}
     \begin{itemize}
-    \item Support displays controllers of SoC or graphics cards, and
+    \item Supports display controllers of SoC or graphics cards, and
       all types of display panels and bridges: parallel, LVDS, DSI,
       HDMI, DisplayPort, etc.
     \item Also supports small display panels connected over I2C or SPI




More information about the training-materials-updates mailing list