Re: [Qemu-devel] qemu/linux-user syscall.c syscall_defs.h

2007-07-08 Thread Andreas Färber
Am 08.07.2007 um 13:54 schrieb Blue Swirl: On 7/8/07, Blue Swirl <[EMAIL PROTECTED]> wrote: Now Sparc64 linux-user emulator can run a statically compiled 'sash' shell. Some built-in commands do not work (ar, gzip, ls, tar), but many others do (cd, cmp, cp, find, grep, gunzip, mkdir, more, mv,

Re: [Qemu-devel] qemu/linux-user syscall.c syscall_defs.h

2007-07-08 Thread Blue Swirl
On 7/8/07, Blue Swirl <[EMAIL PROTECTED]> wrote: On 7/8/07, Blue Swirl <[EMAIL PROTECTED]> wrote: > Modified files: > linux-user : syscall.c syscall_defs.h > > Log message: > Fix Sparc64 stat system call Now Sparc64 linux-user emulator can run a statically compiled 'sash' sh

Re: [Qemu-devel] qemu/linux-user syscall.c syscall_defs.h

2007-07-08 Thread Blue Swirl
On 7/8/07, Blue Swirl <[EMAIL PROTECTED]> wrote: Modified files: linux-user : syscall.c syscall_defs.h Log message: Fix Sparc64 stat system call Now Sparc64 linux-user emulator can run a statically compiled 'sash' shell. Some built-in commands do not work (ar, gzip, ls, ta

Re: [Qemu-devel] qemu/linux-user syscall.c

2007-05-28 Thread Paul Brook
On Monday 28 May 2007, Blue Swirl wrote: > On 5/28/07, Paul Brook <[EMAIL PROTECTED]> wrote: > > target_phys_addr_t isn't really meaningful for userspace emulation. > > We don't have physical addresses, only target (target_ulong) and > > host (void *) virtual addresses. > > Vice versa, there are a

Re: [Qemu-devel] qemu/linux-user syscall.c

2007-05-28 Thread Blue Swirl
On 5/28/07, Paul Brook <[EMAIL PROTECTED]> wrote: target_phys_addr_t isn't really meaningful for userspace emulation. We don't have physical addresses, only target (target_ulong) and host (void *) virtual addresses. Vice versa, there are a some references in hw/*.c to target_ulong, shouldn't th

Re: [Qemu-devel] qemu/linux-user syscall.c

2007-05-28 Thread Thiemo Seufer
Paul Brook wrote: > > Fix do_socketcall argument, by Daniel Jacobowitz. > > > - static long do_socketcall(int num, target_ulong vptr) > > + static long do_socketcall(int num, target_phys_addr_t vptr) > > What is this supposed to be fixing? > vptr is a target pointer, and is only ever us

Re: [Qemu-devel] qemu/linux-user syscall.c

2007-05-28 Thread Paul Brook
> Fix do_socketcall argument, by Daniel Jacobowitz. > - static long do_socketcall(int num, target_ulong vptr) > + static long do_socketcall(int num, target_phys_addr_t vptr) What is this supposed to be fixing? vptr is a target pointer, and is only ever used as an argument to tgetl. I

Re: [Qemu-devel] qemu/linux-user syscall.c

2007-03-19 Thread Kirill A. Shutemov
On [Sat, 17.03.2007 01:27], Paul Brook wrote: > CVSROOT: /sources/qemu > Module name: qemu > Changes by: Paul Brook 07/03/17 01:27:24 > > Modified files: > linux-user : syscall.c > > Log message: > Usermode recv syscall fix. > > CVSWeb URLs: > http://cvs.savannah.gn

Re: [Qemu-devel] qemu/linux-user syscall.c

2007-02-11 Thread Thiemo Seufer
Kirill A. Shutemov wrote: > Patch in the attachment. Already changed. :-) > Imported only two syscall from Debian patchset. What about others(mount, > mount, uselib, mincore, clock_gettime)? Uselib is obsolete AFAICS. > Should I split it in several patches? This would help, yes. Thiemo ___

Re: [Qemu-devel] qemu/linux-user syscall.c

2007-02-11 Thread Kirill A. Shutemov
On [Sun, 11.02.2007 18:35], Paul Brook wrote: > On Sunday 11 February 2007 18:26, Thiemo Seufer wrote: > > CVSROOT:/sources/qemu > > Module name:qemu > > Changes by: Thiemo Seufer 07/02/11 18:26:54 > > > > Modified files: > > linux-user : syscall.c > > > > Log message: > >

Re: [Qemu-devel] qemu/linux-user syscall.c

2007-02-11 Thread Paul Brook
On Sunday 11 February 2007 18:26, Thiemo Seufer wrote: > CVSROOT: /sources/qemu > Module name: qemu > Changes by: Thiemo Seufer 07/02/11 18:26:54 > > Modified files: > linux-user : syscall.c > > Log message: > Linux userland emulation of syslog, from Debian patchset. >