From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:46639) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UDZj6-0008Sz-Qv for qemu-devel@nongnu.org; Thu, 07 Mar 2013 07:15:16 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UDZj3-0007DQ-Eg for qemu-devel@nongnu.org; Thu, 07 Mar 2013 07:15:12 -0500 Message-ID: <51388536.3010305@redhat.com> Date: Thu, 07 Mar 2013 13:16:54 +0100 From: Laszlo Ersek MIME-Version: 1.0 References: <24E144B8C0207547AD09C467A8259F7557B2BE14@lisa.maurer-it.com> <20130306231208.GA17594@ohm.aurel32.net> <20130307005351.GA19296@morn.localdomain> <20130307084304.GA17400@ohm.aurel32.net> In-Reply-To: <20130307084304.GA17400@ohm.aurel32.net> Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] problems with freeBSD List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Aurelien Jarno Cc: "qemu-devel@nongnu.org" , Kevin O'Connor , seabios@seabios.org, qemu-stable@nongnu.org, Dietmar Maurer On 03/07/13 09:43, Aurelien Jarno wrote: > I did a git bisect to find the commit fixing the issue. Then, as I was > not believing the result, I tried the following sequence a dozen of > times (for some unknown reasons the FreeBSD install CD doesn't exhibit > the issue, so I used the Debian GNU/kFreeBSD installer): > > | mkdir qemu-freebsd-bug > | cd qemu-freebsd-bug > | > | wget http://ftp.debian.org/debian/dists/squeeze/main/installer-kfreebsd-amd64/current/images/netboot/mini.iso > | > | git clone git://git.qemu.org/qemu.git > | cd qemu > | git checkout -b stable-1.4 v1.4.0 > | ./configure --target-list=x86_64-softmmu > | make > | cd .. > | > | git clone git://git.seabios.org/seabios.git > | cd seabios > | git checkout -b 1.7.2-stable origin/1.7.2-stable > | git reset --hard 4219149ad2b783abfa61e80e9e9f6910db0c76c9 > | make > | cp out/bios.bin ../qemu/pc-bios > | cd.. > | > | # debian-installer boots correctly > | ./qemu/x86_64-softmmu/qemu-system-x86_64 -enable-kvm -cdrom mini.iso > | > | cd seabios > | git reset --hard d75c22fcb6521dad11428b65789d92f89675c600 > | git clean -fdx > | make > | cp out/bios.bin ../qemu/pc-bios > | cd .. > | > | # debian-installer fails to boot > | ./qemu/x86_64-softmmu/qemu-system-x86_64 -enable-kvm -cdrom mini.iso > > > Maybe I am doing something wrong or there is a bug in my toolchain > (Debian Sid). It would be nice if someone could try to reproduce that on > another distro/system. > Can you save the out/ directory from both builds and "diff -ur" them (maybe just the *.lds files)? I'm noticing that pathnames are embedded in some ELF section names (I hope this sentence makes sense), and when you build at d75c22fc, those pathnames contain dot-dot (".."), ie. two section name separators next to each other. Maybe that's not good; no idea. Laszlo