Skip to content

Commit 56db0e5

Browse files
author
Tim Callahan
committed
Add 'curl' and 'unzip' prerequisites to scripts/setup.
These missing packages were discovered trying to build/run with docker. Signed-off-by: Tim Callahan <[email protected]>
1 parent ede6b29 commit 56db0e5

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

scripts/setup

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@ fi
2828
if ! which verilator >/dev/null; then
2929
missing+=(verilator libevent-dev libjson-c-dev)
3030
fi
31+
if ! which curl >/dev/null; then
32+
missing+=(curl)
33+
fi
34+
if ! which unzip >/dev/null; then
35+
missing+=(unzip)
36+
fi
3137
if ! (apt list -i | grep libusb-1.0-0-dev) ; then
3238
missing+=(libusb-1.0-0-dev libftdi1-dev)
3339
fi

0 commit comments

Comments
 (0)