From b2fece4bc22a77a5359384ee85942a50c81a726c Mon Sep 17 00:00:00 2001 From: Martin Schwan Date: Wed, 29 Oct 2025 13:39:29 +0100 Subject: [PATCH] doc: build-install: Fix build dependencies with mtd-utils Add mtd-utils to the build dependencies and their resulting commands on Ubuntu and Arch Linux. This was missing previously, as only the list before it mentioned mtd-utils. Signed-off-by: Martin Schwan --- doc/build-install.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/build-install.rst b/doc/build-install.rst index 3eb9f88..e644cd3 100644 --- a/doc/build-install.rst +++ b/doc/build-install.rst @@ -34,7 +34,7 @@ Ubuntu and Debian :: apt-get install libglib2.0-dev libyaml-dev libparted-dev util-linux udev \ - squashfs-tools dosfstools e2fsprogs meson python3 \ + squashfs-tools dosfstools e2fsprogs mtd-utils meson python3 \ python3-virtualenv Arch Linux @@ -43,7 +43,7 @@ Arch Linux :: pacman -S glib2 libyaml parted util-linux squashfs-tools dosfstools \ - e2fsprogs meson python python-virtualenv + e2fsprogs mtd-utils meson python python-virtualenv Building partup ---------------