From 4b32a3e9f5ebeabfa0549bdf2eabb0fd3899f893 Mon Sep 17 00:00:00 2001 From: Daniel Sutton <98765732+XV-02@users.noreply.github.com> Date: Wed, 17 Apr 2024 11:40:51 -0600 Subject: [PATCH] Add Debian and Fedora dependencies (#541) Add Debian (pkgconf/libssl-dev) and Fedora (openssl-devel) dependencies for firmware build. --- scripts/install-deps.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/install-deps.sh b/scripts/install-deps.sh index e1b3f08..0b4060d 100755 --- a/scripts/install-deps.sh +++ b/scripts/install-deps.sh @@ -27,9 +27,11 @@ if [[ "${ID}" =~ "debian" ]] || [[ "${ID_LIKE}" =~ "debian" ]]; then flashrom \ git-lfs \ libncurses-dev \ + libssl-dev \ libudev-dev \ mtools \ parted \ + pkgconf \ python-is-python3 \ python3-distutils \ uuid-dev \ @@ -47,6 +49,7 @@ elif [[ "${ID}" =~ "fedora" ]] || [[ "${ID_LIKE}" =~ "fedora" ]]; then libuuid-devel \ mtools \ ncurses-devel \ + openssl-devel \ parted \ patch \ python-unversioned-command \