summaryrefslogtreecommitdiffstats
path: root/documentation/bsp-guide
diff options
context:
space:
mode:
authorNicolas Dechesne <nicolas.dechesne@linaro.org>2020-07-30 13:37:11 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-09-17 10:09:34 +0100
commit28afbf81ecb34add93f5eed2c1a41ec5f278d0a7 (patch)
tree62804dd25f10e4a3781268549cde2aba8bafcb03 /documentation/bsp-guide
parent283ed72d487ed78d4f8e0fcc17f635d6c212b7c6 (diff)
downloadpoky-28afbf81ecb34add93f5eed2c1a41ec5f278d0a7.tar.gz
sphinx: fix links when the link text should be displayed
When an hyperlink should be display in the output, there is no need to any specific syntax or marker, the parser finds links and mail addresses in ordinary text. Somehow the conversion from pandoc generated wrong output in the form: ` <link>`__. This patch is generated using the following Python regexp: line = re.sub("` <(https?://.*)>`__", "\\1", line) (From yocto-docs rev: a35d735a74425dff34c63c086947624467658c40) Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/bsp-guide')
-rw-r--r--documentation/bsp-guide/bsp.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/documentation/bsp-guide/bsp.rst b/documentation/bsp-guide/bsp.rst
index 9a12c942bc..663d9478a4 100644
--- a/documentation/bsp-guide/bsp.rst
+++ b/documentation/bsp-guide/bsp.rst
@@ -108,7 +108,7 @@ Some layers function as a layer to hold other BSP layers. These layers
108are knows as "`container 108are knows as "`container
109layers <&YOCTO_DOCS_REF_URL;#term-container-layer>`__". An example of 109layers <&YOCTO_DOCS_REF_URL;#term-container-layer>`__". An example of
110this type of layer is OpenEmbedded's 110this type of layer is OpenEmbedded's
111```meta-openembedded`` <https://github.com/openembedded/meta-openembedded>`__ 111```meta-openembedded`https://github.com/openembedded/meta-openembedded
112layer. The ``meta-openembedded`` layer contains many ``meta-*`` layers. 112layer. The ``meta-openembedded`` layer contains many ``meta-*`` layers.
113In cases like this, you need to include the names of the actual layers 113In cases like this, you need to include the names of the actual layers
114you want to work with, such as: BBLAYERS ?= " \\ 114you want to work with, such as: BBLAYERS ?= " \\
@@ -164,7 +164,7 @@ section.
1644. *Optionally Clone the ``meta-intel`` BSP Layer:* If your hardware is 1644. *Optionally Clone the ``meta-intel`` BSP Layer:* If your hardware is
165 based on current Intel CPUs and devices, you can leverage this BSP 165 based on current Intel CPUs and devices, you can leverage this BSP
166 layer. For details on the ``meta-intel`` BSP layer, see the layer's 166 layer. For details on the ``meta-intel`` BSP layer, see the layer's
167 ```README`` <http://git.yoctoproject.org/cgit/cgit.cgi/meta-intel/tree/README>`__ 167 ```README`http://git.yoctoproject.org/cgit/cgit.cgi/meta-intel/tree/README
168 file. 168 file.
169 169
170 1. *Navigate to Your Source Directory:* Typically, you set up the 170 1. *Navigate to Your Source Directory:* Typically, you set up the
@@ -849,7 +849,7 @@ Yocto Project:
849 in ``poky/meta`` directory of the :term:`Source Directory` 849 in ``poky/meta`` directory of the :term:`Source Directory`
850 or in the 850 or in the
851 OpenEmbedded-Core Layer (``openembedded-core``) at 851 OpenEmbedded-Core Layer (``openembedded-core``) at
852 ` <http://git.openembedded.org/openembedded-core/tree/meta>`__. 852 http://git.openembedded.org/openembedded-core/tree/meta.
853 853
854 You should place recipes (``*.bb`` files) and recipe modifications 854 You should place recipes (``*.bb`` files) and recipe modifications
855 (``*.bbappend`` files) into ``recipes-*`` subdirectories by 855 (``*.bbappend`` files) into ``recipes-*`` subdirectories by