summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJan Janssen <medhefgo@web.de>2023-02-26 14:09:44 +0100
committerJan Janssen <medhefgo@web.de>2023-03-10 11:41:03 +0100
commitdfca5587cf2032f9ad06041b93b0da5cb39b9989 (patch)
tree3998aae5fc6aeea7631dc27aa7fc64310fdc68fa /tools
parent92148283131474116ed458dbc5966d4b8381e1b3 (diff)
downloadsystemd-dfca5587cf2032f9ad06041b93b0da5cb39b9989.tar.gz
tree-wide: Drop gnu-efi
This drops all mentions of gnu-efi and its manual build machinery. A future commit will bring bootloader builds back. A new bootloader meson option is now used to control whether to build sd-boot and its userspace tooling.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/oss-fuzz.sh8
1 files changed, 1 insertions, 7 deletions
diff --git a/tools/oss-fuzz.sh b/tools/oss-fuzz.sh
index 2e64475c6d..b2a5900b1f 100755
--- a/tools/oss-fuzz.sh
+++ b/tools/oss-fuzz.sh
@@ -35,18 +35,12 @@ else
apt-get update
apt-get install -y gperf m4 gettext python3-pip \
libcap-dev libmount-dev \
- pkg-config wget python3-jinja2 zipmerge
+ pkg-config wget python3-jinja2 zipmerge zstd
if [[ "$ARCHITECTURE" == i386 ]]; then
apt-get install -y pkg-config:i386 libcap-dev:i386 libmount-dev:i386
fi
- # gnu-efi is installed here to enable -Dgnu-efi behind which fuzz-bcd
- # is hidden. It isn't linked against efi. It doesn't
- # even include "efi.h" because "bcd.c" can work in "unit test" mode
- # where it isn't necessary.
- apt-get install -y gnu-efi zstd
-
pip3 install -r .github/workflows/requirements.txt --require-hashes
# https://github.com/google/oss-fuzz/issues/6868