qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Nguyen Anh Quynh" <aquynh@gmail.com>
To: Alexander Graf <alex@csgraf.de>
Cc: kvm-devel <kvm-devel@lists.sourceforge.net>, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] Re: [RFC] linuxboot Option ROM for Linux kernel booting
Date: Wed, 23 Apr 2008 22:40:41 +0900	[thread overview]
Message-ID: <9cde8bff0804230640m2aac9db2ocad62cb7ebb9331c@mail.gmail.com> (raw)
In-Reply-To: <347162E7-234D-444E-8244-277F2FDB05F5@csgraf.de>

On 4/22/08, Alexander Graf <alex@csgraf.de> wrote:
> I believe that's the way to go. If you have spare time on your hands, feel
> free to integrate my multiboot patches as well.
>

OK, that looks straightforward enough.

Thanks,
Q

>
>  On Apr 22, 2008, at 11:07 AM, Nguyen Anh Quynh wrote:
>
>
> > Hi,
> >
> > I am thinking about comibing this ROM with the extboot. Both two ROM
> > are about "booting", so I think that is reasonable. So we will have
> > only 1 ROM that supports both external boot and Linux boot.
> >
> > Is that desirable or not?
> >
> > Thanks,
> > Quynh
> >
> > On 4/21/08, Nguyen Anh Quynh <aquynh@gmail.com> wrote:
> >
> > > Hmm, the last patch includes a binary. So please take this patch
> instead.
> > >
> > > Thanks,
> > >
> > > Q
> > >
> > > # diffstat linuxboot1.diff
> > >  Makefile             |   13 ++++-
> > >  linuxboot/Makefile   |   40 +++++++++++++++
> > >  linuxboot/boot.S     |   54 +++++++++++++++++++++
> > >  linuxboot/farvar.h   |  130
> +++++++++++++++++++++++++++++++++++++++++++++++++++
> > >  linuxboot/rom.c      |  104
> ++++++++++++++++++++++++++++++++++++++++
> > >
> > > linuxboot/signrom.c  |  128
> ++++++++++++++++++++++++++++++++++++++++++++++++++
> > >  linuxboot/util.h     |   69 +++++++++++++++++++++++++++
> > >  qemu/Makefile        |    3 -
> > >  qemu/Makefile.target |    2
> > >  qemu/hw/linuxboot.c  |   39 +++++++++++++++
> > >  qemu/hw/pc.c         |   22 +++++++-
> > >  qemu/hw/pc.h         |    5 +
> > >
> > > 12 files changed, 600 insertions(+), 9 deletions(-)
> > >
> > >
> > >
> > >
> > >
> > >
> > > On Mon, Apr 21, 2008 at 12:33 PM, Nguyen Anh Quynh <aquynh@gmail.com>
> wrote:
> > >
> > > > Forget to say that this patch is against kvm-66.
> > > >
> > > > Thanks,
> > > > Q
> > > >
> > > >
> > > >
> > > > On Mon, Apr 21, 2008 at 12:32 PM, Nguyen Anh Quynh <aquynh@gmail.com>
> wrote:
> > > >
> > > > > Hi,
> > > > >
> > > > > This should be submitted to upstream (but not to kvm-devel list),
> but
> > > > > this is only the test code that I want to quickly send out for
> > > > > comments. In case it looks OK, I will send it to upstream later.
> > > > >
> > > > > Inspired by extboot and conversations with Anthony and HPA, this
> > > > > linuxboot option ROM is a simple option ROM that intercepts int19 in
> > > > > order to execute linux setup code. This approach eliminates the need
> > > > > to manipulate the boot sector for this purpose.
> > > > >
> > > > > To test it, just load linux kernel with your KVM/QEMU image using
> > > > > -kernel option in normal way.
> > > > >
> > > > > I succesfully compiled and tested it with kvm-66 on Ubuntu 7.10,
> guest
> > > > > Ubuntu 8.04.
> > > > >
> > > > > Thanks,
> > > > > Quynh
> > > > >
> > > > >
> > > > > # diffstat linuxboot1.diff
> > > > >  Makefile             |   13 ++++-
> > > > >  linuxboot/Makefile   |   40 +++++++++++++++
> > > > >  linuxboot/boot.S     |   54 +++++++++++++++++++++
> > > > >  linuxboot/farvar.h   |  130
> +++++++++++++++++++++++++++++++++++++++++++++++++++
> > > > >  linuxboot/rom.c      |  104
> ++++++++++++++++++++++++++++++++++++++++
> > > > >  linuxboot/signrom    |binary
> > > > >  linuxboot/signrom.c  |  128
> ++++++++++++++++++++++++++++++++++++++++++++++++++
> > > > >  linuxboot/util.h     |   69 +++++++++++++++++++++++++++
> > > > >  qemu/Makefile        |    3 -
> > > > >  qemu/Makefile.target |    2
> > > > >  qemu/hw/linuxboot.c  |   39 +++++++++++++++
> > > > >  qemu/hw/pc.c         |   22 +++++++-
> > > > >  qemu/hw/pc.h         |    5 +
> > > > >  13 files changed, 600 insertions(+), 9 deletions(-)
> > > > >
> > > > >
> > > >
> > > >
> > >
> > >
> > >
> >
> >
> >
>
>

  reply	other threads:[~2008-04-23 13:40 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-04-21  3:32 [Qemu-devel] [RFC] linuxboot Option ROM for Linux kernel booting Nguyen Anh Quynh
2008-04-21  3:33 ` [Qemu-devel] " Nguyen Anh Quynh
2008-04-21  3:36   ` Nguyen Anh Quynh
2008-04-22  9:07     ` Nguyen Anh Quynh
2008-04-22 10:35       ` Alexander Graf
2008-04-23 13:40         ` Nguyen Anh Quynh [this message]
2008-04-22 13:45       ` Anthony Liguori
2008-04-22 16:23       ` H. Peter Anvin
2008-04-23 13:49         ` Nguyen Anh Quynh
2008-04-22 13:50 ` Anthony Liguori
2008-04-22 15:02   ` Laurent Vivier
2008-04-23 13:41   ` Nguyen Anh Quynh

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=9cde8bff0804230640m2aac9db2ocad62cb7ebb9331c@mail.gmail.com \
    --to=aquynh@gmail.com \
    --cc=alex@csgraf.de \
    --cc=kvm-devel@lists.sourceforge.net \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).