Skip to content
This repository has been archived by the owner on May 14, 2024. It is now read-only.

Fix missing tab for "Build Busybox:" #27

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 16 additions & 4 deletions source/linux-qemu.rst
Original file line number Diff line number Diff line change
Expand Up @@ -137,11 +137,23 @@ Then compile the kernel:

Build Busybox:

.. code-block:: bash
.. jinja::

.. tabs::

{% for bits in [64,32] %}

.. group-tab:: {{bits}}-bit

.. code-block:: bash

cd busybox
CROSS_COMPILE=riscv{{bits}}-unknown-linux-gnu- make defconfig
CROSS_COMPILE=riscv{{bits}}-unknown-linux-gnu- make -j $(nproc)

cd busybox
CROSS_COMPILE=riscv{{bits}}-unknown-linux-gnu- make defconfig
CROSS_COMPILE=riscv{{bits}}-unknown-linux-gnu- make -j $(nproc)
{% endfor %}

----------

Running
-------
Expand Down