From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1L8aFl-0004hu-IH for qemu-devel@nongnu.org; Fri, 05 Dec 2008 07:57:53 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1L8aFk-0004hN-1q for qemu-devel@nongnu.org; Fri, 05 Dec 2008 07:57:53 -0500 Received: from [199.232.76.173] (port=57427 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L8aFj-0004hK-TP for qemu-devel@nongnu.org; Fri, 05 Dec 2008 07:57:51 -0500 Received: from nf-out-0910.google.com ([64.233.182.186]:24102) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1L8aFi-00041t-NU for qemu-devel@nongnu.org; Fri, 05 Dec 2008 07:57:51 -0500 Received: by nf-out-0910.google.com with SMTP id b2so2570033nfb.12 for ; Fri, 05 Dec 2008 04:57:50 -0800 (PST) Message-ID: <761ea48b0812050457p3d41a8dbje9d4b69894c4ceff@mail.gmail.com> Date: Fri, 5 Dec 2008 13:57:39 +0100 From: "Laurent Desnogues" Subject: Re: [Qemu-devel] ARMv6 el + vfp: User Mode signals uncaught target signal 4 (Illegal instruction) In-Reply-To: <49392015.7080209@opensuse.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <4938FFCC.3070909@opensuse.org> <761ea48b0812050355x6adaea49nd9434a41bcd8f765@mail.gmail.com> <49392015.7080209@opensuse.org> Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org On Fri, Dec 5, 2008 at 1:35 PM, Martin Mohring wrote: >> You should specify the CPU when launching qemu. Look at "qemu -cpu ?" >> output and select the right one. You probably want -cpu arm1136. >> > I use qemu user mode, and call qemu with host linux kernels binfmt > handler. How do I specify the cpu type there? Or must I compile in the > "default cpu type" somehow? You mean you can't pass command line parameters to qemu? Then follow Riku Voipio's advice and change in linux_user/main.c cpu_model = "arm926"; to cpu_model = "any";. Laurent