diff options
author | Leah Rowe <leah@libreboot.org> | 2025-08-30 07:22:38 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-08-30 07:22:38 +0100 |
commit | 09646783a5b352d5d7ad166d01db9e0536a56ca5 (patch) | |
tree | 4e0ed43107c73d751fa7444b3391e9997d1cbead | |
parent | d9011da0eb26744b64b8f0161d6f39b145b0af60 (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-x | config/dependencies/debian | 2 | ||||
-rwxr-xr-x | config/dependencies/ubuntu2004 | 2 | ||||
-rwxr-xr-x | config/dependencies/ubuntu2404 | 2 |
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 \ |