[bootlin/training-materials updates] master: Use https for kernel.org links (0043136d)

Michael Opdenacker michael.opdenacker at bootlin.com
Tue Mar 19 06:39:56 CET 2019


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

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

commit 0043136de988b1eb5a288e9b52e5c6d3eb79cc22
Author: Michael Opdenacker <michael.opdenacker at bootlin.com>
Date:   Tue Mar 19 06:39:56 2019 +0100

    Use https for kernel.org links
    
    Signed-off-by: Michael Opdenacker <michael.opdenacker at bootlin.com>


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

0043136de988b1eb5a288e9b52e5c6d3eb79cc22
 labs/buildroot-basic/buildroot-basic.tex                          | 2 +-
 labs/kernel-sources-download/kernel-sources-download.tex          | 2 +-
 .../sysdev-kernel-fetch-and-patch.tex                             | 2 +-
 labs/sysdev-real-time/sysdev-real-time.tex                        | 2 +-
 slides/c-libraries/c-libraries.tex                                | 2 +-
 slides/kernel-source-code-layout/kernel-source-code-layout.tex    | 2 +-
 .../sysdev-bootloaders-sequence/sysdev-bootloaders-sequence.tex   | 2 +-
 slides/sysdev-linux-intro-sources/sysdev-linux-intro-sources.tex  | 4 ++--
 .../sysdev-linux-tarballs-and-patches.tex                         | 8 ++++----
 slides/sysdev-realtime/sysdev-realtime.tex                        | 2 +-
 10 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/labs/buildroot-basic/buildroot-basic.tex b/labs/buildroot-basic/buildroot-basic.tex
index 63124c0f..b90716ab 100644
--- a/labs/buildroot-basic/buildroot-basic.tex
+++ b/labs/buildroot-basic/buildroot-basic.tex
@@ -159,7 +159,7 @@ Now, let's do the configuration:
     the kernel sources themselves, called a {\em defconfig}. To
     identify which {\em defconfig} to use, you can look in the kernel
     sources directly, at
-    \url{http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/arch/arm/configs/?id=v4.13}. In
+    \url{https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/arch/arm/configs/?id=v4.13}. In
     practice, for this platform, it is not trivial to find which one
     to use: the AM335x processor is supported in the Linux kernel as
     part of the support for many other Texas Instruments processors:
diff --git a/labs/kernel-sources-download/kernel-sources-download.tex b/labs/kernel-sources-download/kernel-sources-download.tex
index 68ff10e4..64ca92e4 100644
--- a/labs/kernel-sources-download/kernel-sources-download.tex
+++ b/labs/kernel-sources-download/kernel-sources-download.tex
@@ -38,7 +38,7 @@ The trouble is you have to download more than 1 GB of data!
 If you are running this command from home, or if you have very fast
 access to the Internet at work (and if you are not 256 participants in the
 training room), you can do it directly by connecting to
-\url{http://git.kernel.org}:
+\url{https://git.kernel.org}:
 
 {\small
 \begin{verbatim}
diff --git a/labs/sysdev-kernel-fetch-and-patch/sysdev-kernel-fetch-and-patch.tex b/labs/sysdev-kernel-fetch-and-patch/sysdev-kernel-fetch-and-patch.tex
index f0edc4b7..4f16f8db 100644
--- a/labs/sysdev-kernel-fetch-and-patch/sysdev-kernel-fetch-and-patch.tex
+++ b/labs/sysdev-kernel-fetch-and-patch/sysdev-kernel-fetch-and-patch.tex
@@ -13,7 +13,7 @@ Create the \code{$HOME/embedded-linux-labs/kernel} directory and go into it.
 
 \section{Get the sources}
 
-Go to the Linux kernel web site (\url{http://www.kernel.org/}) and
+Go to the Linux kernel web site (\url{https://kernel.org/}) and
 identify the latest stable version.
 
 Just to make sure you know how to do it, check the version of the
diff --git a/labs/sysdev-real-time/sysdev-real-time.tex b/labs/sysdev-real-time/sysdev-real-time.tex
index 4d28cca6..247de0cf 100644
--- a/labs/sysdev-real-time/sysdev-real-time.tex
+++ b/labs/sysdev-real-time/sysdev-real-time.tex
@@ -98,7 +98,7 @@ We will use a kernel version that is supported by the PREEMPT\_RT
 patchset.
 
 So, go to
-\url{https://www.kernel.org/pub/linux/kernel/projects/rt/4.13/},
+\url{https://kernel.org/pub/linux/kernel/projects/rt/4.13/},
 download the latest patch available in a single file.
 
 Then go to \url{http://kernel.org} and download the exact version
diff --git a/slides/c-libraries/c-libraries.tex b/slides/c-libraries/c-libraries.tex
index acda1e81..67a8bdb2 100644
--- a/slides/c-libraries/c-libraries.tex
+++ b/slides/c-libraries/c-libraries.tex
@@ -94,7 +94,7 @@ compare the size
   \item Choices:
     \begin{itemize}
     \item Newlib, \url{http://sourceware.org/newlib/}
-    \item Klibc, \url{http://www.kernel.org/pub/linux/libs/klibc/},
+    \item Klibc, \url{https://kernel.org/pub/linux/libs/klibc/},
       designed for use in an {\em initramfs} or {\em initrd} at boot
       time.
     \end{itemize}
diff --git a/slides/kernel-source-code-layout/kernel-source-code-layout.tex b/slides/kernel-source-code-layout/kernel-source-code-layout.tex
index 1f2133ef..ee1d2409 100644
--- a/slides/kernel-source-code-layout/kernel-source-code-layout.tex
+++ b/slides/kernel-source-code-layout/kernel-source-code-layout.tex
@@ -38,7 +38,7 @@
   \item \kdir{Documentation}
     \begin{itemize}
     \item Kernel documentation sources\\
-     Also available on \url{https://www.kernel.org/doc/}\\
+     Also available on \url{https://kernel.org/doc/}\\
      (includes functions prototypes and comments
      extracted from source code). 
     \end{itemize}
diff --git a/slides/sysdev-bootloaders-sequence/sysdev-bootloaders-sequence.tex b/slides/sysdev-bootloaders-sequence/sysdev-bootloaders-sequence.tex
index 51601398..5d2b0088 100644
--- a/slides/sysdev-bootloaders-sequence/sysdev-bootloaders-sequence.tex
+++ b/slides/sysdev-bootloaders-sequence/sysdev-bootloaders-sequence.tex
@@ -54,7 +54,7 @@
       \url{https://bootlin.com/doc/legacy/grub/}
     \end{itemize}
   \item Syslinux, for network and removable media booting (USB key, CD-ROM)\\
-    \small\url{http://www.kernel.org/pub/linux/utils/boot/syslinux/}\normalsize
+    \small\url{https://kernel.org/pub/linux/utils/boot/syslinux/}\normalsize
   \end{itemize}
 \end{frame}
 
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 a26cc7ba..2b60609d 100644
--- a/slides/sysdev-linux-intro-sources/sysdev-linux-intro-sources.tex
+++ b/slides/sysdev-linux-intro-sources/sysdev-linux-intro-sources.tex
@@ -4,7 +4,7 @@
   \frametitle{Location of kernel sources}
   \begin{itemize}
   \item The official versions of the Linux kernel, as released by Linus
-    Torvalds, are available at \url{http://www.kernel.org}
+    Torvalds, are available at \url{https://kernel.org}
     \begin{itemize}
     \item These versions follow the development model of the kernel
     \item However, they may not contain the latest development from a
@@ -32,7 +32,7 @@
   \frametitle{Getting Linux sources}
   \begin{itemize}
   \item The kernel sources are available from
-    \url{http://kernel.org/pub/linux/kernel} as {\bf full tarballs}
+    \url{https://kernel.org/pub/linux/kernel} as {\bf full tarballs}
     (complete kernel sources) and {\bf patches} (differences between
     two kernel versions).
   \item However, more and more people use the \code{git} version
diff --git a/slides/sysdev-linux-tarballs-and-patches/sysdev-linux-tarballs-and-patches.tex b/slides/sysdev-linux-tarballs-and-patches/sysdev-linux-tarballs-and-patches.tex
index f138897b..7b0ad14c 100644
--- a/slides/sysdev-linux-tarballs-and-patches/sysdev-linux-tarballs-and-patches.tex
+++ b/slides/sysdev-linux-tarballs-and-patches/sysdev-linux-tarballs-and-patches.tex
@@ -7,7 +7,7 @@
       uncompress, but must be done at least once
     \item Example:\\
       \footnotesize
-      \url{http://www.kernel.org/pub/linux/kernel/v4.x/linux-4.20.13.tar.xz}
+      \url{https://kernel.org/pub/linux/kernel/v4.x/linux-4.20.13.tar.xz}
       \normalsize
     \item Extract command:\\
       \footnotesize
@@ -20,11 +20,11 @@
       correct patches in the right order. Quick to download and apply
     \item Examples:\\
       \scriptsize
-      \url{http://www.kernel.org/pub/linux/kernel/v4.x/patch-4.20.xz}\\(4.19 to 4.20)\\
-      \url{http://www.kernel.org/pub/linux/kernel/v4.x/patch-4.20.13.xz}\\(4.20 to 4.20.13)
+      \url{https://kernel.org/pub/linux/kernel/v4.x/patch-4.20.xz}\\(4.19 to 4.20)\\
+      \url{https://kernel.org/pub/linux/kernel/v4.x/patch-4.20.13.xz}\\(4.20 to 4.20.13)
     \end{itemize}
   \item All previous kernel versions are available in
-    \url{http://kernel.org/pub/linux/kernel/}
+    \url{https://kernel.org/pub/linux/kernel/}
   \end{itemize}
 \end{frame}
 
diff --git a/slides/sysdev-realtime/sysdev-realtime.tex b/slides/sysdev-realtime/sysdev-realtime.tex
index 3303f34e..d7d540ff 100644
--- a/slides/sysdev-realtime/sysdev-realtime.tex
+++ b/slides/sysdev-realtime/sysdev-realtime.tex
@@ -504,7 +504,7 @@
   \item Quick set up:
     \begin{itemize}
     \item Download the latest PREEMPT\_RT patch\\
-      from \footnotesize \url{http://www.kernel.org/pub/linux/kernel/projects/rt/} \normalsize
+      from \footnotesize \url{https://kernel.org/pub/linux/kernel/projects/rt/} \normalsize
     \item Download and extract the corresponding mainline kernel
       version
     \item Apply the patch to the mainline kernel tree




More information about the training-materials-updates mailing list