qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] Fedora-Core-2
@ 2004-08-03 22:11 Fabrice Bellard
  2004-08-03 22:36 ` Hetz Ben Hamo
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Fabrice Bellard @ 2004-08-03 22:11 UTC (permalink / raw)
  To: qemu-devel


The last commits should allow QEMU to work on Fedora-Core-2 without the 
published hacks. Tell me if you see improvements.

Fabrice.

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

* Re: [Qemu-devel] Fedora-Core-2
  2004-08-03 22:11 [Qemu-devel] Fedora-Core-2 Fabrice Bellard
@ 2004-08-03 22:36 ` Hetz Ben Hamo
  2004-08-04  0:12 ` Lennert Buytenhek
  2004-08-07  2:21 ` Marcelo Duarte
  2 siblings, 0 replies; 4+ messages in thread
From: Hetz Ben Hamo @ 2004-08-03 22:36 UTC (permalink / raw)
  To: qemu-devel

On Wednesday 04 August 2004 01:11, Fabrice Bellard wrote:
> The last commits should allow QEMU to work on Fedora-Core-2 without the
> published hacks. Tell me if you see improvements.

Yup, seems to fix the problem here...

Thanks,
Hetz

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

* Re: [Qemu-devel] Fedora-Core-2
  2004-08-03 22:11 [Qemu-devel] Fedora-Core-2 Fabrice Bellard
  2004-08-03 22:36 ` Hetz Ben Hamo
@ 2004-08-04  0:12 ` Lennert Buytenhek
  2004-08-07  2:21 ` Marcelo Duarte
  2 siblings, 0 replies; 4+ messages in thread
From: Lennert Buytenhek @ 2004-08-04  0:12 UTC (permalink / raw)
  To: qemu-devel

On Wed, Aug 04, 2004 at 12:11:33AM +0200, Fabrice Bellard wrote:

> The last commits should allow QEMU to work on Fedora-Core-2 without the 
> published hacks. Tell me if you see improvements.

I still need setarch to get qemu-arm to run.  Or is that not what
you meant?  (And which commit do you mean exactly, the kernel_sigaction/
qemu_sigaction changes?)

phi% qemu-arm ./hi-arm-unknown-linux-gnu
qemu: uncaught target signal 11 (Segmentation fault) - exiting
phi% setarch i686 qemu-arm ./hi-arm-unknown-linux-gnu
hi!
phi%



diff -u bad good:

-mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xf70a4000
+mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x55001000


-mmap2(NULL, 528384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xf7023000
-mprotect(0xf70a3000, 4096, PROT_NONE)   = 0
-munmap(0xf70a4000, 4096)                = 0
+mmap2(NULL, 528384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x55002000
+mprotect(0x55082000, 4096, PROT_NONE)   = 0
+munmap(0x55001000, 4096)                = 0


---- SIGSEGV (Segmentation fault) @ 0 (0) ---
-write(2, "qemu: uncaught target signal 11 "..., 63qemu: uncaught target signal 11 (Segmentation fault) - exiting
-) = 63
-exit_group(-11)                         = ?
+fcntl64(0, F_GETFD)                     = 0
+fcntl64(1, F_GETFD)                     = 0
+fcntl64(2, F_GETFD)                     = 0
+personality(0 /* PER_??? */)            = 8
+geteuid32()                             = 500
+getuid32()                              = 500
+getegid32()                             = 500
+getgid32()                              = 500
+mmap2(0x46000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, 0, 0) = 0x46000
+getpid()                                = 29747
+write(1, "hi!\n", 4)                    = 4
+exit_group(0)                           = ?



--L

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

* Re: [Qemu-devel] Fedora-Core-2
  2004-08-03 22:11 [Qemu-devel] Fedora-Core-2 Fabrice Bellard
  2004-08-03 22:36 ` Hetz Ben Hamo
  2004-08-04  0:12 ` Lennert Buytenhek
@ 2004-08-07  2:21 ` Marcelo Duarte
  2 siblings, 0 replies; 4+ messages in thread
From: Marcelo Duarte @ 2004-08-07  2:21 UTC (permalink / raw)
  To: qemu-devel

Before this patches, I needd to configure --static. Now, it not needed. 
But I had a problem. When I try to install win98se:

[mduarte@mduarte w]$ qemu -hda c1.img -boot a -fda disquete -cdrom 
win98se.iso -monitor stdio
QEMU 0.6.0 monitor - type 'help' for more information
(qemu) ./win-cd: line 1: 21328 Falha de segmentação  qemu -hda c1.img 
-boot a -fda disquete -cdrom win98se.iso -monitor stdio

The segmentation fault occurs when it pass to second fase, instalation, 
i agree.
Thanks.
Fabrice Bellard wrote:

>
> The last commits should allow QEMU to work on Fedora-Core-2 without 
> the published hacks. Tell me if you see improvements.
>
> Fabrice.
>
>
>
> _______________________________________________
> Qemu-devel mailing list
> Qemu-devel@nongnu.org
> http://lists.nongnu.org/mailman/listinfo/qemu-devel
>
>

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

end of thread, other threads:[~2004-08-07  2:25 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-08-03 22:11 [Qemu-devel] Fedora-Core-2 Fabrice Bellard
2004-08-03 22:36 ` Hetz Ben Hamo
2004-08-04  0:12 ` Lennert Buytenhek
2004-08-07  2:21 ` Marcelo Duarte

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