diff options
Diffstat (limited to 'docs/plat')
-rw-r--r-- | docs/plat/allwinner.rst | 4 | ||||
-rw-r--r-- | docs/plat/meson-gxbb.rst | 2 | ||||
-rw-r--r-- | docs/plat/meson-gxl.rst | 2 | ||||
-rw-r--r-- | docs/plat/qemu.rst | 4 |
4 files changed, 6 insertions, 6 deletions
diff --git a/docs/plat/allwinner.rst b/docs/plat/allwinner.rst index 46a5f9bf3..a1e06590a 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 cae11cd54..2cd8342cb 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 3c39c9d46..c6d850446 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 30ae97dda..4ebe64b85 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 \ |