Skip to content
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: 8 additions & 12 deletions source/debian/Building_Debian_Image.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,6 @@

git clone https://github.com/TexasInstruments/armbian-build.git

.. ifconfig:: CONFIG_part_variant in ('AM62LX')

.. note::

BeagleBadge is supported in Armbian but is not yet supported on **ti-main** branch, therefore run the following command
before building for BeagleBadge:

.. code-block:: console

git checkout 2025.12-beaglebadge

Repository Structure
--------------------

Expand Down Expand Up @@ -92,6 +81,12 @@
sudo usermod -aG docker $USER
newgrp docker

If the host machine is behind a proxy, be sure to set **at minimum** the HTTP_PROXY environment variable prior to building:

Check failure on line 84 in source/debian/Building_Debian_Image.rst

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [RedHat.TermsErrors] Use 'before' rather than 'prior to'. Raw Output: {"message": "[RedHat.TermsErrors] Use 'before' rather than 'prior to'.", "location": {"path": "source/debian/Building_Debian_Image.rst", "range": {"start": {"line": 84, "column": 109}}}, "severity": "ERROR"}

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Our general statement in the Debian getting started guide is:

Also export ``http_proxy``, ``https_proxy``, ``ftp_proxy`` and ``no_proxy`` with appropriate values if needed.

Feels slightly redundant.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Slightly different: that statement is for on-board network use, while this PR is for a host machine building an image

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fair enough. Could you resolve the vale comment then?


.. code-block:: console

export HTTP_PROXY=http://<proxy_address>:<proxy_port>

- To build interactively:

.. code-block:: console
Expand Down Expand Up @@ -132,8 +127,9 @@
AM62-LP,sk-am62-lp,``config/boards/sk-am62-lp.conf``,"vendor, vendor-rt, vendor-edge, edge"
AM62SIP,sk-am62-sip,``config/boards/sk-am62-sip.conf``,"vendor, vendor-rt, vendor-edge, edge"
AM62Lx,tmds62levm,``config/boards/tmds62levm.conf``,"vendor, vendor-rt, vendor-edge"
AM62Lx,beaglebadge,``config/boards/beaglebadge.conf``,"vendor-edge"
AM62Lx,beaglebadge,``config/boards/beaglebadge.conf``,"vendor, vendor-rt, vendor-edge"

Check warning on line 130 in source/debian/Building_Debian_Image.rst

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [RedHat.Spelling] Verify the word 'beaglebadge'. It is not in the American English or Red Hat terminology spelling dictionaries used by Vale. Raw Output: {"message": "[RedHat.Spelling] Verify the word 'beaglebadge'. It is not in the American English or Red Hat terminology spelling dictionaries used by Vale.", "location": {"path": "source/debian/Building_Debian_Image.rst", "range": {"start": {"line": 130, "column": 42}}}, "severity": "WARNING"}
AM62Px,sk-am62p,``config/boards/sk-am62p.conf``,"vendor, vendor-rt, vendor-edge, edge"
AM64x,sk-am64b,``config/boards/sk-am64b.conf``,"vendor, vendor-rt, vendor-edge, edge"
AM64x,tmds64evm,``config/boards/tmds64evm.conf``,"vendor, vendor-rt, vendor-edge, edge"

``output/images/`` stores the built images. These images have a ``.img`` extension.
Loading