summaryrefslogtreecommitdiff
path: root/docs/plat
diff options
context:
space:
mode:
authorPaul Beesley <paul.beesley@arm.com>2019-03-13 15:11:04 +0000
committerPaul Beesley <paul.beesley@arm.com>2019-05-22 11:28:17 +0100
commit29c02529592fb2489edee6c92e418918e5732105 (patch)
tree9510a970fc1f7c0779ae1521303edfae4f55ff91 /docs/plat
parent8f62ca7b3060b87ede0a55c1972e5d2146a23890 (diff)
doc: Set correct syntax highlighting style
Several code blocks do not specify a language for syntax highlighting. This results in Sphinx using a default highlighter which is Python. This patch adds the correct language to each code block that doesn't already specify it. Change-Id: Icce1949aabfdc11a334a42d49edf55fa673cddc3 Signed-off-by: Paul Beesley <paul.beesley@arm.com>
Diffstat (limited to 'docs/plat')
-rw-r--r--docs/plat/allwinner.rst4
-rw-r--r--docs/plat/meson-gxbb.rst2
-rw-r--r--docs/plat/meson-gxl.rst2
-rw-r--r--docs/plat/qemu.rst4
4 files changed, 6 insertions, 6 deletions
diff --git a/docs/plat/allwinner.rst b/docs/plat/allwinner.rst
index 46a5f9bf..a1e06590 100644
--- a/docs/plat/allwinner.rst
+++ b/docs/plat/allwinner.rst
@@ -24,13 +24,13 @@ See the respective `U-Boot documentation`_ for more details.
To build for machines with an A64 or H5 SoC:
-::
+.. code:: shell
make CROSS_COMPILE=aarch64-linux-gnu- PLAT=sun50i_a64 DEBUG=1 bl31
To build for machines with an H6 SoC:
-::
+.. code:: shell
make CROSS_COMPILE=aarch64-linux-gnu- PLAT=sun50i_h6 DEBUG=1 bl31
diff --git a/docs/plat/meson-gxbb.rst b/docs/plat/meson-gxbb.rst
index cae11cd5..2cd8342c 100644
--- a/docs/plat/meson-gxbb.rst
+++ b/docs/plat/meson-gxbb.rst
@@ -15,7 +15,7 @@ and Linux:
In order to build it:
-::
+.. code:: shell
CROSS_COMPILE=aarch64-linux-gnu- make DEBUG=1 PLAT=gxbb bl31
diff --git a/docs/plat/meson-gxl.rst b/docs/plat/meson-gxl.rst
index 3c39c9d4..c6d85044 100644
--- a/docs/plat/meson-gxl.rst
+++ b/docs/plat/meson-gxl.rst
@@ -15,7 +15,7 @@ and Linux:
In order to build it:
-::
+.. code:: shell
CROSS_COMPILE=aarch64-linux-gnu- make DEBUG=1 PLAT=gxl
diff --git a/docs/plat/qemu.rst b/docs/plat/qemu.rst
index 30ae97dd..4ebe64b8 100644
--- a/docs/plat/qemu.rst
+++ b/docs/plat/qemu.rst
@@ -33,13 +33,13 @@ is conveniently achieved with symlinks the local names as:
To build:
-::
+.. code:: shell
make CROSS_COMPILE=aarch64-none-elf- PLAT=qemu
To start (QEMU v2.6.0):
-::
+.. code:: shell
qemu-system-aarch64 -nographic -machine virt,secure=on -cpu cortex-a57 \
-kernel Image \