From mboxrd@z Thu Jan 1 00:00:00 1970 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 References: <524B1083.3080807@redhat.com> From: Alex =?utf-8?Q?Benn=C3=A9e?= 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 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Subject: Re: [Qemu-devel] [Build bug] Problem checking out submodules List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Lucas Meneghel Rodrigues Cc: qemu-devel 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 -- Alex Bennée