From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1N7y8F-0006nz-DQ for qemu-devel@nongnu.org; Tue, 10 Nov 2009 16:20:07 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N7y8A-0006iW-Qu for qemu-devel@nongnu.org; Tue, 10 Nov 2009 16:20:06 -0500 Received: from [199.232.76.173] (port=37215 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N7y8A-0006iM-K3 for qemu-devel@nongnu.org; Tue, 10 Nov 2009 16:20:02 -0500 Received: from mail-yx0-f188.google.com ([209.85.210.188]:40259) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1N7y8A-0001K0-08 for qemu-devel@nongnu.org; Tue, 10 Nov 2009 16:20:02 -0500 Received: by yxe26 with SMTP id 26so403874yxe.4 for ; Tue, 10 Nov 2009 13:20:01 -0800 (PST) MIME-Version: 1.0 In-Reply-To: <20091110205040.GF9052@hall.aurel32.net> References: <20091110205040.GF9052@hall.aurel32.net> From: Blue Swirl Date: Tue, 10 Nov 2009 23:19:40 +0200 Message-ID: Subject: Re: [Qemu-devel] arm, mips and mipsel broken Content-Type: text/plain; charset=UTF-8 List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Aurelien Jarno Cc: qemu-devel@nongnu.org On Tue, Nov 10, 2009 at 10:50 PM, Aurelien Jarno wrote: > Please note that at least qemu-system-arm, qemu-system-mips and > qemu-system-mipsel are broken by this commit: Given that none of the devices touched by the commit should be used by these targets, the breakage comes from just the single new call to qemu_system_reset in vl.c. This means that the reset functions for those boards and devices must be awfully buggy. I think the easiest solution is to surround the call by #if defined(TARGET_I386) || defined(TARGET_PPC) || defined(TARGET_SPARC) #endif until the devices have been fixed.