From patchwork Thu Apr 25 12:56:50 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Stefan Hajnoczi X-Patchwork-Id: 1090761 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=nongnu.org (client-ip=209.51.188.17; helo=lists.gnu.org; envelope-from=qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=redhat.com Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 44qcfH5QXFz9s9G for ; Thu, 25 Apr 2019 22:57:26 +1000 (AEST) Received: from localhost ([127.0.0.1]:56720 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hJdwI-0002Ii-1E for incoming@patchwork.ozlabs.org; Thu, 25 Apr 2019 08:57:22 -0400 Received: from eggs.gnu.org ([209.51.188.92]:53314) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hJdvu-0002IS-WD for qemu-devel@nongnu.org; Thu, 25 Apr 2019 08:56:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hJdvu-0003EO-0W for qemu-devel@nongnu.org; Thu, 25 Apr 2019 08:56:58 -0400 Received: from mx1.redhat.com ([209.132.183.28]:48002) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hJdvt-0003D5-RO for qemu-devel@nongnu.org; Thu, 25 Apr 2019 08:56:57 -0400 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 6A64E2CD7E1; Thu, 25 Apr 2019 12:56:56 +0000 (UTC) Received: from localhost (ovpn-117-82.ams2.redhat.com [10.36.117.82]) by smtp.corp.redhat.com (Postfix) with ESMTP id 8850A1001DDE; Thu, 25 Apr 2019 12:56:51 +0000 (UTC) From: Stefan Hajnoczi To: Date: Thu, 25 Apr 2019 13:56:50 +0100 Message-Id: <20190425125650.28846-1-stefanha@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.29]); Thu, 25 Apr 2019 12:56:56 +0000 (UTC) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH] gitmodules: use qemu.org git mirrors X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: =?utf-8?q?Marc-Andr=C3=A9_Lureau?= , Stefan Hajnoczi , Peter Maydell Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: "Qemu-devel" qemu.org hosts git repository mirrors of all submodules. Update .gitmodules to use the mirrors and not the upstream repositories. Mirroring upstream repositories ensures that QEMU continues to build even when upstream repositories are deleted or temporarily offline. Signed-off-by: Stefan Hajnoczi Reviewed-by: Philippe Mathieu-Daudé Tested-by: Philippe Mathieu-Daudé --- Based-on: <20190424110041.8175-1-marcandre.lureau@redhat.com> "[PATCH v2 0/2] slirp: move slirp as git submodule project" Peter: Please apply Marc-André's series. I have set up the necessary mirrors and this patch will fix up the libsirp URL as well as the other URLs. .gitmodules | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitmodules b/.gitmodules index aa77ce6f50..84b260031c 100644 --- a/.gitmodules +++ b/.gitmodules @@ -39,19 +39,19 @@ url = https://git.qemu.org/git/capstone.git [submodule "roms/seabios-hppa"] path = roms/seabios-hppa - url = https://github.com/hdeller/seabios-hppa.git + url = https://git.qemu.org/git/seabios-hppa.git [submodule "roms/u-boot-sam460ex"] path = roms/u-boot-sam460ex url = https://git.qemu.org/git/u-boot-sam460ex.git [submodule "tests/fp/berkeley-testfloat-3"] path = tests/fp/berkeley-testfloat-3 - url = https://github.com/cota/berkeley-testfloat-3 + url = https://git.qemu.org/git/berkeley-testfloat-3.git [submodule "tests/fp/berkeley-softfloat-3"] path = tests/fp/berkeley-softfloat-3 - url = https://github.com/cota/berkeley-softfloat-3 + url = https://git.qemu.org/git/berkeley-softfloat-3.git [submodule "roms/edk2"] path = roms/edk2 - url = https://github.com/tianocore/edk2.git + url = https://git.qemu.org/git/tianocore/edk2.git [submodule "slirp"] path = slirp - url = https://gitlab.freedesktop.org/slirp/libslirp.git + url = https://git.qemu.org/git/libslirp.git