Skip to content

Commit

Permalink
Clone repositories through https instead of git
Browse files Browse the repository at this point in the history
The git protocol is deprecated.

Signed-off-by: Michael Opdenacker <[email protected]>
  • Loading branch information
Michael Opdenacker committed Dec 20, 2023
1 parent f4f7a92 commit c5c8d37
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ \section{Download Buildroot}
Buildroot source code from its Git repository:

\begin{bashinput}
git clone git://git.busybox.net/buildroot
git clone https://git.busybox.net/buildroot
\end{bashinput}

In case this is blocked on your network, you can download the Buildroot
Expand Down
4 changes: 2 additions & 2 deletions labs/sysdev-u-boot-beagleplay/sysdev-u-boot-beagleplay.tex
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ \section{Get the TI firmware and create {\tt tiboot3.bin} image}
\begin{bashinput}
$ cd $HOME/__SESSION_NAME__-labs/bootloader
$ git clone git://git.ti.com/processor-firmware/ti-linux-firmware.git
$ git clone https://git.ti.com/cgit/processor-firmware/ti-linux-firmware
$ cd ti-linux-firmware
$ git checkout c126d3864b9faf725ff40e620049ab5d56dedc5b
\end{bashinput}
Expand All @@ -269,7 +269,7 @@ \section{Get the TI firmware and create {\tt tiboot3.bin} image}
Get \code{k3-image-gen},
\begin{bashinput}
$ cd ..
$ git clone git://git.ti.com/k3-image-gen/k3-image-gen.git
$ git clone https://git.ti.com/cgit/k3-image-gen/k3-image-gen
$ cd k3-image-gen/
$ git checkout 150f1956b4bdcba36e7dffc78a4342df602f8d6e
\end{bashinput}
Expand Down
6 changes: 3 additions & 3 deletions slides/sysdev-build-systems/sysdev-build-systems.tex
Original file line number Diff line number Diff line change
Expand Up @@ -394,9 +394,9 @@ \subsection{Embedded Linux build systems}
\begin{block}{Download {\em bitbake} and layers}
{\footnotesize
\begin{verbatim}
$ git clone git://git.openembedded.org/openembedded-core -b kirkstone
$ git clone git://git.openembedded.org/meta-openembedded -b kirkstone
$ git clone git://git.openembedded.org/bitbake -b 2.0
$ git clone https://git.openembedded.org/openembedded-core -b kirkstone
$ git clone https://git.openembedded.org/meta-openembedded -b kirkstone
$ git clone https://git.openembedded.org/bitbake -b 2.0
$ git clone https://github.com/STMicroelectronics/meta-st-stm32mp.git -b kirkstone
\end{verbatim}
}
Expand Down

0 comments on commit c5c8d37

Please sign in to comment.