summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2025-08-30 07:22:38 +0100
committerLeah Rowe <leah@libreboot.org>2025-08-30 07:22:38 +0100
commit09646783a5b352d5d7ad166d01db9e0536a56ca5 (patch)
tree4e0ed43107c73d751fa7444b3391e9997d1cbead
parentd9011da0eb26744b64b8f0161d6f39b145b0af60 (diff)
config/dependencies: add --no-install-recommends
use this on the debian dependencies, otherwise it installs a bunch of extra crap e.g. xorg crap, in some circumstances, which someone probably won't want when they're in a minimal chroot or something. reported by ron nazarov. thank you ron! Signed-off-by: Leah Rowe <leah@libreboot.org>
-rwxr-xr-xconfig/dependencies/debian2
-rwxr-xr-xconfig/dependencies/ubuntu20042
-rwxr-xr-xconfig/dependencies/ubuntu24042
3 files changed, 3 insertions, 3 deletions
diff --git a/config/dependencies/debian b/config/dependencies/debian
index d4c26ee0..5774ca7c 100755
--- a/config/dependencies/debian
+++ b/config/dependencies/debian
@@ -1,6 +1,6 @@
# SPDX-License-Identifier: GPL-3.0-or-later
-pkg_add="apt-get install $reinstall"
+pkg_add="apt-get install --no-install-recommends $reinstall"
pkglist=" \
acpica-tools autoconf autogen automake autopoint autotools-dev bc \
binutils-arm-none-eabi bison build-essential cmake curl device-tree-compiler \
diff --git a/config/dependencies/ubuntu2004 b/config/dependencies/ubuntu2004
index ce69a4d9..ce2314d8 100755
--- a/config/dependencies/ubuntu2004
+++ b/config/dependencies/ubuntu2004
@@ -1,6 +1,6 @@
# SPDX-License-Identifier: GPL-3.0-or-later
-pkg_add="apt-get install $reinstall"
+pkg_add="apt-get install --no-install-recommends $reinstall"
pkglist=" \
autoconf autogen automake autopoint autotools-dev bc binutils-arm-none-eabi \
bison build-essential cmake curl device-tree-compiler doxygen e2fsprogs efitools \
diff --git a/config/dependencies/ubuntu2404 b/config/dependencies/ubuntu2404
index b0633e69..a54a3177 100755
--- a/config/dependencies/ubuntu2404
+++ b/config/dependencies/ubuntu2404
@@ -1,6 +1,6 @@
# SPDX-License-Identifier: GPL-3.0-or-later
-pkg_add="apt-get install $reinstall"
+pkg_add="apt-get install --no-install-recommends $reinstall"
pkglist=" \
autoconf autogen automake autopoint autotools-dev bc binutils-arm-none-eabi \
bison build-essential cmake curl device-tree-compiler doxygen e2fsprogs efitools \