summaryrefslogtreecommitdiffstats
path: root/documentation/kernel-dev
diff options
context:
space:
mode:
authorPeter Kjellerstedt <peter.kjellerstedt@axis.com>2023-05-23 03:32:42 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-05-26 17:32:51 +0100
commit076eda5d6eb3c1e1449c71dc871b447643162db7 (patch)
tree67734032f461bb42b093c4c35c6bf22b87455272 /documentation/kernel-dev
parent517b555e097fea720dff3b0de7c44ec915aff351 (diff)
downloadpoky-076eda5d6eb3c1e1449c71dc871b447643162db7.tar.gz
manuals: kernel-dev: Use protocol=https in a SRC_URI example
This matches the change in commit 139102a73d (recipes: Default to https git protocol where possible) in openembedded-core. (From yocto-docs rev: 0e1e0d2dd986dcc6462f979ecc5a1ac1e17476ba) Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/kernel-dev')
-rw-r--r--documentation/kernel-dev/advanced.rst7
1 files changed, 3 insertions, 4 deletions
diff --git a/documentation/kernel-dev/advanced.rst b/documentation/kernel-dev/advanced.rst
index 35195135c4..355326de6e 100644
--- a/documentation/kernel-dev/advanced.rst
+++ b/documentation/kernel-dev/advanced.rst
@@ -730,11 +730,10 @@ reside in a separate repository. The OpenEmbedded build system adds the
730Metadata to the build as a "type=kmeta" repository through the 730Metadata to the build as a "type=kmeta" repository through the
731:term:`SRC_URI` variable. As an 731:term:`SRC_URI` variable. As an
732example, consider the following :term:`SRC_URI` statement from the 732example, consider the following :term:`SRC_URI` statement from the
733``linux-yocto_4.12.bb`` kernel recipe:: 733``linux-yocto_5.15.bb`` kernel recipe::
734
735 SRC_URI = "git://git.yoctoproject.org/linux-yocto-4.12.git;name=machine;branch=${KBRANCH}; \
736 git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-4.12;destsuffix=${KMETA}"
737 734
735 SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;name=machine;branch=${KBRANCH};protocol=https \
736 git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-5.15;destsuffix=${KMETA};protocol=https"
738 737
739``${KMETA}``, in this context, is simply used to name the directory into 738``${KMETA}``, in this context, is simply used to name the directory into
740which the Git fetcher places the Metadata. This behavior is no different 739which the Git fetcher places the Metadata. This behavior is no different