From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Kk0hK-0002Qp-6Z for qemu-devel@nongnu.org; Sun, 28 Sep 2008 14:08:46 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Kk0hJ-0002QJ-Hv for qemu-devel@nongnu.org; Sun, 28 Sep 2008 14:08:45 -0400 Received: from [199.232.76.173] (port=38751 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Kk0hJ-0002QF-CI for qemu-devel@nongnu.org; Sun, 28 Sep 2008 14:08:45 -0400 Received: from wf-out-1314.google.com ([209.85.200.173]:5285) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Kk0hH-0000Tb-0T for qemu-devel@nongnu.org; Sun, 28 Sep 2008 14:08:44 -0400 Received: by wf-out-1314.google.com with SMTP id 27so1803176wfd.4 for ; Sun, 28 Sep 2008 11:08:42 -0700 (PDT) Message-ID: Date: Sun, 28 Sep 2008 21:08:42 +0300 From: "Blue Swirl" Subject: Re: [Qemu-devel] Can't boot my sparc system anymore In-Reply-To: <48DFC2A5.6040305@earthlink.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <48DFC2A5.6040305@earthlink.net> 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 9/28/08, Robert Reif wrote: > I tried running one of my sparc system boot scripts that does: > > qemu-system-sparc -hda c.img -M SS-10 -append "console=ttyS0 > video=tcxfb:off" -nographic > > and I now get: > > -append only allowed with -kernel option > > This is a recent regression. Do I need to do this differently now or is > this a bug? It has never worked. -append is used only with preloaded Linux kernel , it is not passed to the boot loader. Please use -prom-env, for example -prom-env 'boot-args=linux single'. Also -nographic is passed to OpenBIOS which switches prom console to serial, so it is not necessary to use 'console=xxx' or 'video=xxx' options. Linux uses prom console before switching to its own console functions.