From b7cf710c47da3d079a715f164873f01745816334 Mon Sep 17 00:00:00 2001 From: Jonas Wood Date: Tue, 16 Dec 2025 21:10:11 -0600 Subject: [PATCH] feat(debian): Update packages needed to build Armbian image Signed-off-by: Jonas Wood --- source/debian/Building_Debian_Image.rst | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/source/debian/Building_Debian_Image.rst b/source/debian/Building_Debian_Image.rst index f8e19b252..cc0993306 100644 --- a/source/debian/Building_Debian_Image.rst +++ b/source/debian/Building_Debian_Image.rst @@ -72,12 +72,14 @@ Armbian supports both an interactive UI and a noninteractive build process. .. note:: This build guide has been tested on an x86 host machine running Ubuntu 22.04. The Armbian :file:`compile.sh` script - builds in an ARM64 docker container. Ensure the following packages are installed: + builds in an ARM64 docker container. Install the following packages and configure docker: .. code-block:: console sudo apt update - sudo apt install docker.io qemu qemu-user-static binfmt-support + sudo apt install docker.io qemu-user-static binfmt-support + sudo usermod -aG docker $USER + newgrp docker - To build interactively: