* [Qemu-devel] qemu/linux-user syscall.c syscall_defs.h
@ 2007-07-20 15:54 Thiemo Seufer
0 siblings, 0 replies; 6+ messages in thread
From: Thiemo Seufer @ 2007-07-20 15:54 UTC (permalink / raw)
To: qemu-devel
CVSROOT: /sources/qemu
Module name: qemu
Changes by: Thiemo Seufer <ths> 07/07/20 15:54:27
Modified files:
linux-user : syscall.c syscall_defs.h
Log message:
Fix statfs(64) syscall wrapper, by Andreas Schwab.
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/qemu/linux-user/syscall.c?cvsroot=qemu&r1=1.115&r2=1.116
http://cvs.savannah.gnu.org/viewcvs/qemu/linux-user/syscall_defs.h?cvsroot=qemu&r1=1.36&r2=1.37
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Qemu-devel] qemu/linux-user syscall.c syscall_defs.h
@ 2007-07-08 10:08 Blue Swirl
2007-07-08 10:31 ` Blue Swirl
0 siblings, 1 reply; 6+ messages in thread
From: Blue Swirl @ 2007-07-08 10:08 UTC (permalink / raw)
To: qemu-devel
CVSROOT: /cvsroot/qemu
Module name: qemu
Changes by: Blue Swirl <blueswir1> 07/07/08 10:08:24
Modified files:
linux-user : syscall.c syscall_defs.h
Log message:
Fix Sparc64 stat system call
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/qemu/linux-user/syscall.c?cvsroot=qemu&r1=1.112&r2=1.113
http://cvs.savannah.gnu.org/viewcvs/qemu/linux-user/syscall_defs.h?cvsroot=qemu&r1=1.35&r2=1.36
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] qemu/linux-user syscall.c syscall_defs.h
2007-07-08 10:08 Blue Swirl
@ 2007-07-08 10:31 ` Blue Swirl
2007-07-08 11:54 ` Blue Swirl
0 siblings, 1 reply; 6+ messages in thread
From: Blue Swirl @ 2007-07-08 10:31 UTC (permalink / raw)
To: qemu-devel
On 7/8/07, Blue Swirl <blauwirbel@gmail.com> 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, tar), but
many others do (cd, cmp, cp, find, grep, gunzip, mkdir, more, mv, rm,
rmdir, setenv, sum, sync, where).
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] qemu/linux-user syscall.c syscall_defs.h
2007-07-08 10:31 ` Blue Swirl
@ 2007-07-08 11:54 ` Blue Swirl
2007-07-08 12:31 ` Andreas Färber
0 siblings, 1 reply; 6+ messages in thread
From: Blue Swirl @ 2007-07-08 11:54 UTC (permalink / raw)
To: qemu-devel
On 7/8/07, Blue Swirl <blauwirbel@gmail.com> wrote:
> On 7/8/07, Blue Swirl <blauwirbel@gmail.com> 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, tar), but
> many others do (cd, cmp, cp, find, grep, gunzip, mkdir, more, mv, rm,
> rmdir, setenv, sum, sync, where).
I just noticed that statically compiled OpenBIOS for Unix executable also works!
qemu-sparc64 ./openbios-unix-static
done.
dictionary loaded (160480 bytes).
Initializing memory...done
Jumping to dictionary...No disk found.
No cdrom found
Welcome to OpenBIOS v1.0RC1 built on Jul 4 2007 13:48
Type 'help' for detailed information
[unix] Booting default not supported.
0 > cr ." hello world!" cr
cr ." hello world!" cr
hello world!
ok
0 > show-devs
show-devs
233e28 /
234000 /aliases
234128 /openprom (BootROM)
2343e0 /openprom/client-services
234510 /options
2345f0 /chosen
234790 /builtin
2348b8 /builtin/console
23d480 /packages
23d9b8 /packages/client-iface
23f068 /packages/disk-label
23f828 /packages/cmdline
2414e0 /packages/deblocker
241ae8 /packages/misc-files
242018 /packages/sun-parts
23fbb0 /pci (pci)
23fef0 /pci/isa (isa)
2406c0 /memory
2407e8 /cpus
240f88 /unix
241120 /unix/block (unix-block)
242270 /unix/block/disk
ok
0 >
This means that now the CPU emulation should be good enough for
OpenBIOS in system emulator also. I suspect register window trap
handlers or memory management prevent it from working.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] qemu/linux-user syscall.c syscall_defs.h
2007-07-08 11:54 ` Blue Swirl
@ 2007-07-08 12:31 ` Andreas Färber
0 siblings, 0 replies; 6+ messages in thread
From: Andreas Färber @ 2007-07-08 12:31 UTC (permalink / raw)
To: qemu-devel
Am 08.07.2007 um 13:54 schrieb Blue Swirl:
> On 7/8/07, Blue Swirl <blauwirbel@gmail.com> 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, rm,
>> rmdir, setenv, sum, sync, where).
>
> I just noticed that statically compiled OpenBIOS for Unix
> executable also works!
[...]
> This means that now the CPU emulation should be good enough for
> OpenBIOS in system emulator also. I suspect register window trap
> handlers or memory management prevent it from working.
Great news! Looking forward to test it.
Andreas
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Qemu-devel] qemu/linux-user syscall.c syscall_defs.h
@ 2005-11-28 22:28 Fabrice Bellard
0 siblings, 0 replies; 6+ messages in thread
From: Fabrice Bellard @ 2005-11-28 22:28 UTC (permalink / raw)
To: qemu-devel
CVSROOT: /cvsroot/qemu
Module name: qemu
Branch:
Changes by: Fabrice Bellard <bellard@savannah.gnu.org> 05/11/28 22:28:41
Modified files:
linux-user : syscall.c syscall_defs.h
Log message:
statfs fix
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/qemu/qemu/linux-user/syscall.c.diff?tr1=1.63&tr2=1.64&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/qemu/qemu/linux-user/syscall_defs.h.diff?tr1=1.23&tr2=1.24&r1=text&r2=text
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2007-07-20 15:55 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-20 15:54 [Qemu-devel] qemu/linux-user syscall.c syscall_defs.h Thiemo Seufer
-- strict thread matches above, loose matches on Subject: below --
2007-07-08 10:08 Blue Swirl
2007-07-08 10:31 ` Blue Swirl
2007-07-08 11:54 ` Blue Swirl
2007-07-08 12:31 ` Andreas Färber
2005-11-28 22:28 Fabrice Bellard
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).