qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] Using Qemu
@ 2010-03-31 22:20 Arpit Patel
  2010-04-01  2:26 ` Mulyadi Santosa
  0 siblings, 1 reply; 5+ messages in thread
From: Arpit Patel @ 2010-03-31 22:20 UTC (permalink / raw)
  To: qemu-devel

[-- Attachment #1: Type: text/plain, Size: 301 bytes --]

Hi,

I am trying to use Qemu, to boot kernel image I got, using the initramfs
image that was build, when I build kernel

But it only loads initramfs image, and gives me prompt with "(initramfs)_",
and thus doesn't load kernel.

Do you guys have any idea, what I am doing wrong.

Thanks for your help.

[-- Attachment #2: Type: text/html, Size: 344 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] Using Qemu
  2010-03-31 22:20 [Qemu-devel] Using Qemu Arpit Patel
@ 2010-04-01  2:26 ` Mulyadi Santosa
  2010-04-01  3:04   ` Arpit Patel
  0 siblings, 1 reply; 5+ messages in thread
From: Mulyadi Santosa @ 2010-04-01  2:26 UTC (permalink / raw)
  To: Arpit Patel; +Cc: qemu-devel

On Thu, Apr 1, 2010 at 05:20, Arpit Patel <arpit1585@gmail.com> wrote:
> Hi,
>
> I am trying to use Qemu, to boot kernel image I got, using the initramfs
> image that was build, when I build kernel
>
> But it only loads initramfs image, and gives me prompt with "(initramfs)_",
> and thus doesn't load kernel.

Care to show us the complete command line you have used to start the
Qemu instance?

-- 
regards,

Mulyadi Santosa
Freelance Linux trainer and consultant

blog: the-hydra.blogspot.com
training: mulyaditraining.blogspot.com

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] Using Qemu
  2010-04-01  2:26 ` Mulyadi Santosa
@ 2010-04-01  3:04   ` Arpit Patel
  2010-04-02  3:41     ` Mulyadi Santosa
  0 siblings, 1 reply; 5+ messages in thread
From: Arpit Patel @ 2010-04-01  3:04 UTC (permalink / raw)
  To: Mulyadi Santosa; +Cc: qemu-devel

[-- Attachment #1: Type: text/plain, Size: 803 bytes --]

Here is the command I issued

"*qemu -initrd initramfs.img -kernel vmlinux-2.6.24 /dev/zero -append
"noapic rw root=/dev/ram*"

Thanks for help.

On Wed, Mar 31, 2010 at 7:26 PM, Mulyadi Santosa
<mulyadi.santosa@gmail.com>wrote:

> On Thu, Apr 1, 2010 at 05:20, Arpit Patel <arpit1585@gmail.com> wrote:
> > Hi,
> >
> > I am trying to use Qemu, to boot kernel image I got, using the initramfs
> > image that was build, when I build kernel
> >
> > But it only loads initramfs image, and gives me prompt with
> "(initramfs)_",
> > and thus doesn't load kernel.
>
> Care to show us the complete command line you have used to start the
> Qemu instance?
>
> --
> regards,
>
> Mulyadi Santosa
> Freelance Linux trainer and consultant
>
> blog: the-hydra.blogspot.com
> training: mulyaditraining.blogspot.com
>

[-- Attachment #2: Type: text/html, Size: 1422 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] Using Qemu
  2010-04-01  3:04   ` Arpit Patel
@ 2010-04-02  3:41     ` Mulyadi Santosa
  2010-04-02  5:04       ` Arpit Patel
  0 siblings, 1 reply; 5+ messages in thread
From: Mulyadi Santosa @ 2010-04-02  3:41 UTC (permalink / raw)
  To: Arpit Patel; +Cc: qemu-devel

Hi Arpit...

On Thu, Apr 1, 2010 at 10:04, Arpit Patel <arpit1585@gmail.com> wrote:
> Here is the command I issued
>
> "qemu -initrd initramfs.img -kernel vmlinux-2.6.24 /dev/zero -append "noapic
> rw root=/dev/ram"

IIRC, you need to pass the bzImage as the argument of -kernel
parameter, not the vmlinux one. Please try that first.

-- 
regards,

Mulyadi Santosa
Freelance Linux trainer and consultant

blog: the-hydra.blogspot.com
training: mulyaditraining.blogspot.com

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] Using Qemu
  2010-04-02  3:41     ` Mulyadi Santosa
@ 2010-04-02  5:04       ` Arpit Patel
  0 siblings, 0 replies; 5+ messages in thread
From: Arpit Patel @ 2010-04-02  5:04 UTC (permalink / raw)
  To: Mulyadi Santosa; +Cc: qemu-devel

[-- Attachment #1: Type: text/plain, Size: 622 bytes --]

Tried that too.
Same output.

On Thu, Apr 1, 2010 at 8:41 PM, Mulyadi Santosa
<mulyadi.santosa@gmail.com>wrote:

> Hi Arpit...
>
> On Thu, Apr 1, 2010 at 10:04, Arpit Patel <arpit1585@gmail.com> wrote:
> > Here is the command I issued
> >
> > "qemu -initrd initramfs.img -kernel vmlinux-2.6.24 /dev/zero -append
> "noapic
> > rw root=/dev/ram"
>
> IIRC, you need to pass the bzImage as the argument of -kernel
> parameter, not the vmlinux one. Please try that first.
>
> --
> regards,
>
> Mulyadi Santosa
> Freelance Linux trainer and consultant
>
> blog: the-hydra.blogspot.com
> training: mulyaditraining.blogspot.com
>

[-- Attachment #2: Type: text/html, Size: 1223 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2010-04-02  5:04 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-31 22:20 [Qemu-devel] Using Qemu Arpit Patel
2010-04-01  2:26 ` Mulyadi Santosa
2010-04-01  3:04   ` Arpit Patel
2010-04-02  3:41     ` Mulyadi Santosa
2010-04-02  5:04       ` Arpit Patel

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).