[FE training-materials-updates] Bump BBB kernel version

Michael Opdenacker michael.opdenacker at free-electrons.com
Fri Mar 27 00:49:33 CET 2015


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

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

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

commit 9057cf40ae620c7101ace0e4c0d79ddfd6ed51bb
Author: Michael Opdenacker <michael.opdenacker at free-electrons.com>
Date:   Wed Mar 25 22:54:59 2015 -0700

    Bump BBB kernel version
    
    Signed-off-by: Michael Opdenacker <michael.opdenacker at free-electrons.com>


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

9057cf40ae620c7101ace0e4c0d79ddfd6ed51bb
 labs/kernel-i2c-device-model/kernel-i2c-device-model.tex   | 4 ++--
 labs/kernel-module-simple/kernel-module-simple.tex         | 4 ++--
 labs/kernel-serial-iomem/kernel-serial-iomem.tex           | 2 +-
 labs/kernel-sources-download/kernel-sources-download.tex   | 2 +-
 labs/kernel-sources-exploring/kernel-sources-exploring.tex | 8 ++++----
 5 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/labs/kernel-i2c-device-model/kernel-i2c-device-model.tex b/labs/kernel-i2c-device-model/kernel-i2c-device-model.tex
index d1b1348..62dedff 100644
--- a/labs/kernel-i2c-device-model/kernel-i2c-device-model.tex
+++ b/labs/kernel-i2c-device-model/kernel-i2c-device-model.tex
@@ -17,10 +17,10 @@ device/driver match.
 \section{Setup}
 
 Go to the \code{~/linux-kernel-labs/src/linux} directory. Check out the
-\code{3.13.y} branch.
+\code{3.19.y} branch.
 
 Now create a new \code{nunchuk} branch starting from the
-\code{3.13.y} branch,  for your upcoming work on the nunchuk
+\code{3.19.y} branch,  for your upcoming work on the nunchuk
 driver.
 
 \section{Connecting the nunchuk}
diff --git a/labs/kernel-module-simple/kernel-module-simple.tex b/labs/kernel-module-simple/kernel-module-simple.tex
index 319d044..e06572d 100644
--- a/labs/kernel-module-simple/kernel-module-simple.tex
+++ b/labs/kernel-module-simple/kernel-module-simple.tex
@@ -102,7 +102,7 @@ As we are going to make changes to the kernel sources, first create a
 special branch for such changes:
 
 \begin{verbatim}
-git checkout 3.13.y
+git checkout 3.19.y
 git checkout -b hello
 \end{verbatim}
 
@@ -152,7 +152,7 @@ from the commits between your branch and another branch, usually the
 one you started from:
 
 \begin{verbatim}
-git format-patch 3.13.y
+git format-patch 3.19.y
 \end{verbatim}
 
 Have a look at the generated file. You can see that its name reused
diff --git a/labs/kernel-serial-iomem/kernel-serial-iomem.tex b/labs/kernel-serial-iomem/kernel-serial-iomem.tex
index 9681d12..94a08cd 100644
--- a/labs/kernel-serial-iomem/kernel-serial-iomem.tex
+++ b/labs/kernel-serial-iomem/kernel-serial-iomem.tex
@@ -22,7 +22,7 @@ is independent from the nunchuk changes, it's best to create a separate
 branch!
 
 \begin{verbatim}
-git checkout 3.13.y
+git checkout 3.19.y
 git checkout -b uart
 \end{verbatim}
 
diff --git a/labs/kernel-sources-download/kernel-sources-download.tex b/labs/kernel-sources-download/kernel-sources-download.tex
index 251a277..a5f2205 100644
--- a/labs/kernel-sources-download/kernel-sources-download.tex
+++ b/labs/kernel-sources-download/kernel-sources-download.tex
@@ -95,7 +95,7 @@ git fetch stable
 \end{verbatim}
 }
 
-This still represents many git objects to download (80 MB when 3.11 was
+This still represents many git objects to download (150 MB when 3.19 was
 the latest version).
 
 We will choose a particular stable version in the next labs.
diff --git a/labs/kernel-sources-exploring/kernel-sources-exploring.tex b/labs/kernel-sources-exploring/kernel-sources-exploring.tex
index 90f741f..43c1ae8 100644
--- a/labs/kernel-sources-exploring/kernel-sources-exploring.tex
+++ b/labs/kernel-sources-exploring/kernel-sources-exploring.tex
@@ -26,18 +26,18 @@ cd ~/linux-kernel-labs/src/linux
 git branch -a
 \end{verbatim}
 
-As we want to work with the Linux 3.13 stable branch, the remote branch
-we are interested in is \code{remotes/stable/linux-3.13.y}.
+As we want to work with the Linux 3.19 stable branch, the remote branch
+we are interested in is \code{remotes/stable/linux-3.19.y}.
 
 First, open the \code{Makefile} file just to check the Linux kernel
 version that you currently have.
 
 Now, let's create a local branch starting from that remote branch:
 \begin{verbatim}
-git checkout -b 3.13.y stable/linux-3.13.y
+git checkout -b 3.19.y stable/linux-3.19.y
 \end{verbatim}
 
-Open \code{Makefile} again and make sure you now have a 3.13.y version.
+Open \code{Makefile} again and make sure you now have a 3.19.y version.
 
 \section{Exploring the sources manually}
 



More information about the training-materials-updates mailing list