From patchwork Tue Oct 1 19:37:53 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Alex_Benn=C3=A9e?= X-Patchwork-Id: 279563 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 893652C03A8 for ; Wed, 2 Oct 2013 05:38:22 +1000 (EST) Received: from localhost ([::1]:60722 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VR5lz-0002aw-JK for incoming@patchwork.ozlabs.org; Tue, 01 Oct 2013 15:38:19 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59798) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VR5lh-0002ar-9f for qemu-devel@nongnu.org; Tue, 01 Oct 2013 15:38:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VR5ld-00049i-AQ for qemu-devel@nongnu.org; Tue, 01 Oct 2013 15:38:01 -0400 Received: from static.88-198-71-155.clients.your-server.de ([88.198.71.155]:54801 helo=socrates.bennee.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VR5ld-00049a-4U for qemu-devel@nongnu.org; Tue, 01 Oct 2013 15:37:57 -0400 Received: from localhost ([127.0.0.1]) by socrates.bennee.com with esmtp (Exim 4.80) (envelope-from ) id 1VR5nE-0001Gu-TU; Tue, 01 Oct 2013 21:39:37 +0200 References: <524B1083.3080807@redhat.com> User-agent: mu4e 0.9.9.5; emacs 24.3.2 From: Alex =?utf-8?Q?Benn=C3=A9e?= To: Lucas Meneghel Rodrigues Message-ID: <874n906avo.fsf@linaro.org> In-reply-to: <524B1083.3080807@redhat.com> Date: Tue, 01 Oct 2013 20:37:53 +0100 MIME-Version: 1.0 X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: alex.bennee@linaro.org X-SA-Exim-Scanned: No (on socrates.bennee.com); SAEximRunCond expanded to false X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 88.198.71.155 Cc: qemu-devel Subject: Re: [Qemu-devel] [Build bug] Problem checking out submodules X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org lmr@redhat.com writes: > Hello: > > In the daily qemu.git autotest run, I started to see the following > problem while checking out the qemu.git tree and checking out the > submodules: > >> $ git submodule update >> >> fatal: reference is not a tree: ece025f5980bae88fa677bc9c0d24d2e580e205d >> >> Unable to checkout 'ece025f5980bae88fa677bc9c0d24d2e580e205d' in submodule path 'roms/seabios' It looks like a recent commit to update the version of SeaBIOS used broke the build as the qemu mirror hasn't been updated yet. You can work around it for now by patching .gitmodules: commit 7149af13dd5600b27dac90235e60ff91d0468636 Author: Alex Bennée Date: Tue Oct 1 16:51:38 2013 +0100 .gitmodules: use upstream SeaBIOS repo to fix submodule init Currently master is broken as the wanted commit doesn't exist in qemu's mirror of SeaBIOS. diff --git a/.gitmodules b/.gitmodules index d7e3f3c..d5d5417 100644 --- a/.gitmodules +++ b/.gitmodules @@ -3,7 +3,7 @@ url = git://git.qemu.org/vgabios.git/ [submodule "roms/seabios"] path = roms/seabios - url = git://git.qemu.org/seabios.git/ + url = git://git.seabios.org/seabios.git [submodule "roms/SLOF"] path = roms/SLOF url = git://git.qemu.org/SLOF.git