Add Debian and Fedora dependencies (#541)

Add Debian (pkgconf/libssl-dev) and Fedora (openssl-devel) dependencies for firmware build.
This commit is contained in:
Daniel Sutton
2024-04-17 11:40:51 -06:00
committed by GitHub
parent 2c6913bc0a
commit 4b32a3e9f5

View File

@ -27,9 +27,11 @@ if [[ "${ID}" =~ "debian" ]] || [[ "${ID_LIKE}" =~ "debian" ]]; then
flashrom \ flashrom \
git-lfs \ git-lfs \
libncurses-dev \ libncurses-dev \
libssl-dev \
libudev-dev \ libudev-dev \
mtools \ mtools \
parted \ parted \
pkgconf \
python-is-python3 \ python-is-python3 \
python3-distutils \ python3-distutils \
uuid-dev \ uuid-dev \
@ -47,6 +49,7 @@ elif [[ "${ID}" =~ "fedora" ]] || [[ "${ID_LIKE}" =~ "fedora" ]]; then
libuuid-devel \ libuuid-devel \
mtools \ mtools \
ncurses-devel \ ncurses-devel \
openssl-devel \
parted \ parted \
patch \ patch \
python-unversioned-command \ python-unversioned-command \