From 90541435c57c5766029d6ee7d4f54b4edb1e4d48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kai=20L=C3=BCke?= Date: Mon, 4 May 2020 12:19:54 +0200 Subject: [PATCH] build_library/dev_container_util.sh: Use correct BINHOST URLs The BINHOST was still configured to be the CoreOS CL upstream location which does not work for independent Flatcar CL releases. This broke binary package installation in the development container. Use the correct BINHOST to fix installation of binary packages in the development container. --- build_library/dev_container_util.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build_library/dev_container_util.sh b/build_library/dev_container_util.sh index 362d3d3e25..201cf7d0a7 100755 --- a/build_library/dev_container_util.sh +++ b/build_library/dev_container_util.sh @@ -25,8 +25,8 @@ PKGDIR="/var/lib/portage/pkgs" PORT_LOGDIR="/var/log/portage" PORTDIR="/var/lib/portage/portage-stable" PORTDIR_OVERLAY="/var/lib/portage/coreos-overlay" -PORTAGE_BINHOST="http://builds.developer.core-os.net/boards/${BOARD}/${FLATCAR_VERSION_ID}/pkgs/ -http://builds.developer.core-os.net/boards/${BOARD}/${FLATCAR_VERSION_ID}/toolchain/" +PORTAGE_BINHOST="https://storage.googleapis.com/flatcar-jenkins/boards/${BOARD}/${FLATCAR_VERSION_ID}/pkgs/ +https://storage.googleapis.com/flatcar-jenkins/boards/${BOARD}/${FLATCAR_VERSION_ID}/toolchain/" EOF sudo_clobber "$1/etc/portage/repos.conf/coreos.conf" <