summaryrefslogtreecommitdiffstats
path: root/util/manibuilder
diff options
context:
space:
mode:
authorNico Huber <nico.h@gmx.de>2022-08-29 14:54:03 +0000
committerFelix Singer <felixsinger@posteo.net>2022-09-27 13:51:59 +0000
commitc582ed5bcd324343652f0f11e0eaf0197155def4 (patch)
tree20384a46d4cb85b2f356a6d2bb04eb21ec5e7978 /util/manibuilder
parent79efb45da9c96f3d677f9f060452b5169e87a9a8 (diff)
downloadflashrom-c582ed5bcd324343652f0f11e0eaf0197155def4.tar.gz
flashrom-c582ed5bcd324343652f0f11e0eaf0197155def4.tar.bz2
flashrom-c582ed5bcd324343652f0f11e0eaf0197155def4.zip
mainbuilder/djgpp: Disable TLS verification for curl and Git
This image is based on an old unsupported SUSE version. The ca-certificates don't get updates anymore. Change-Id: Ie46e3772f030765d6abb092727e2fbed61d3d989 Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/c/flashrom/+/67178 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Felix Singer <felixsinger@posteo.net>
Diffstat (limited to 'util/manibuilder')
-rw-r--r--util/manibuilder/Dockerfile.djgpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/util/manibuilder/Dockerfile.djgpp b/util/manibuilder/Dockerfile.djgpp
index 970ceb440..7bd5c7bd6 100644
--- a/util/manibuilder/Dockerfile.djgpp
+++ b/util/manibuilder/Dockerfile.djgpp
@@ -6,6 +6,7 @@ RUN \
useradd -p locked -m mani && \
zypper -q install -y tar make git ccache
+ENV GIT_SSL_NO_VERIFY=1
USER mani
RUN cd && \
mkdir .ccache && chown mani:users .ccache && \
@@ -13,14 +14,14 @@ RUN cd && \
git clone https://git.kernel.org/pub/scm/utils/pciutils/pciutils.git && \
cd pciutils && \
git checkout v3.5.6 && \
- curl https://flashrom.org/images/6/6a/Pciutils-3.5.6.patch.gz | zcat | git apply && \
+ curl --insecure https://flashrom.org/images/6/6a/Pciutils-3.5.6.patch.gz | zcat | git apply && \
make ZLIB=no DNS=no HOST=i386-djgpp-djgpp \
CROSS_COMPILE=i586-pc-msdosdjgpp- \
PREFIX=/ DESTDIR=$PWD/../ \
STRIP="--strip-program=i586-pc-msdosdjgpp-strip -s" \
install install-lib && \
cd ../ && \
- curl https://flashrom.org/images/3/3d/Libgetopt.tar.gz | zcat | tar x && \
+ curl --insecure https://flashrom.org/images/3/3d/Libgetopt.tar.gz | zcat | tar x && \
cd libgetopt && \
make && cp libgetopt.a ../lib/ && cp getopt.h ../include/