From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HM3qK-0000EU-4T for qemu-devel@nongnu.org; Tue, 27 Feb 2007 10:02:16 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HM3qI-0000E9-GL for qemu-devel@nongnu.org; Tue, 27 Feb 2007 10:02:15 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HM3qI-0000E6-BM for qemu-devel@nongnu.org; Tue, 27 Feb 2007 10:02:14 -0500 Received: from nf-out-0910.google.com ([64.233.182.185]) by monty-python.gnu.org with esmtp (Exim 4.52) id 1HM3qH-0005gx-MO for qemu-devel@nongnu.org; Tue, 27 Feb 2007 10:02:13 -0500 Received: by nf-out-0910.google.com with SMTP id c31so317263nfb for ; Tue, 27 Feb 2007 07:02:12 -0800 (PST) Message-ID: Date: Tue, 27 Feb 2007 10:02:12 -0500 From: Peter Sender: pjcreath@gmail.com MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: [Qemu-devel] sparc32 bug/misfeature 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 hw/sun4m.c, line 154: m48t59_write(nvram, i++, 0x80); /* Sun4m OBP */ This is not a machine type recognized by SunOS (and probably other early versions of Solaris). According to idprom.h (some which is quoted at http://www.sunmanagers.org/archives/1993/0050.html), the only recognized sun4m IDs are: #define IDM_SUN4M_690 0x71 /* SPARCsystem 600 series */ #define IDM_SUN4M_50 0x72 /* Campus 2 */ A SparcStation 10 is IDM_SUN4M_50. SunOS tries to print an error message and panic() if the machine ID is neither 0x71 or 0x72. (It fails with a data access exception because some of the devices haven't been mapped yet.) So this either needs to be changed to 0x72 or there needs to be some way to configure qemu to specify the machine ID from the command line (or config file).