From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KP6Fe-0005xG-S3 for qemu-devel@nongnu.org; Fri, 01 Aug 2008 21:49:46 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KP6Fd-0005x4-Ex for qemu-devel@nongnu.org; Fri, 01 Aug 2008 21:49:46 -0400 Received: from [199.232.76.173] (port=39400 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KP6Fd-0005x1-8x for qemu-devel@nongnu.org; Fri, 01 Aug 2008 21:49:45 -0400 Received: from wf-out-1314.google.com ([209.85.200.169]:63839) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KP6Fd-0002di-0P for qemu-devel@nongnu.org; Fri, 01 Aug 2008 21:49:45 -0400 Received: by wf-out-1314.google.com with SMTP id 27so1817019wfd.4 for ; Fri, 01 Aug 2008 18:49:43 -0700 (PDT) Message-ID: <9c9fda240808011849p6770f25h27d944779383b1ca@mail.gmail.com> Date: Sat, 2 Aug 2008 10:49:43 +0900 From: "Kyungmin Park" Sender: kyungmin78@gmail.com Subject: Re: [Qemu-devel] [PATCH] Add Apollon (OMAP24xx) board support (take #2) In-Reply-To: <20080801210435.GA13444@game.jcrosoft.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20080728072403.GA564@july> <20080801210435.GA13444@game.jcrosoft.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 Hi, On Sat, Aug 2, 2008 at 6:04 AM, Jean-Christophe PLAGNIOL-VILLARD wrote: > On 16:24 Mon 28 Jul , Kyungmin Park wrote: >> Add apollon (OMAP24xx) board initial support >> with board descriptions > > Could provide a work example of booting the board? > > I'd to boot u-boot on it. > The apollon is mainlined board, you can run u-boot and kernel on qemu As now LCD is not supported, you should add -nographic option. I'll add it later :) Simple example. 1. Download u-boot. 2. make apollon_config 3. qemu-system-arm -M apollon -kernel u-boot.bin -nographic -mtdblock mtdblock ${other options} Then you can see u-boot boot messages. Thank you, Kyungmin Park