]>
Commit | Line | Data |
---|---|---|
6c0372d3 FB |
1 | version 0.4: |
2 | ||
3 | - initial support for ring 0 x86 processor emulation | |
4 | - fixed signal handling for correct dosemu DPMI emulation | |
5 | - fast x86 MMU emulation with mmap() | |
6 | - fixed popl (%esp) case | |
1eb20527 | 7 | - Linux kernel can be executed by QEMU with the 'vl' command. |
6c0372d3 | 8 | |
411bffc4 | 9 | version 0.3: |
de83cd02 FB |
10 | |
11 | - initial support for ARM emulation | |
411bffc4 FB |
12 | - added fnsave, frstor, fnstenv, fldenv FPU instructions |
13 | - added FPU register save in signal emulation | |
322d0c66 | 14 | - initial ARM port |
de83cd02 FB |
15 | - Sparc and Alpha ports work on the regression test |
16 | - generic ioctl number conversion | |
17 | - fixed ioctl type conversion | |
411bffc4 | 18 | |
3c51961e FB |
19 | version 0.2: |
20 | ||
1eb20527 FB |
21 | - PowerPC disassembly and ELF symbols output (Rusty Russell) |
22 | - flock support (Rusty Russell) | |
23 | - ugetrlimit support (Rusty Russell) | |
24 | - fstat64 fix (Rusty Russell) | |
3c51961e FB |
25 | - initial Alpha port (Falk Hueffner) |
26 | - initial IA64 port (Matt Wilson) | |
27 | - initial Sparc and Sparc64 port (David S. Miller) | |
86840ae2 | 28 | - added HLT instruction |
70e19860 FB |
29 | - LRET instruction fix. |
30 | - added GPF generation for I/Os. | |
31 | - added INT3 and TF flag support. | |
32 | - SHL instruction C flag fix. | |
33 | - mmap emulation for host page size > 4KB | |
34 | - self-modifying code support | |
df0f11a0 FB |
35 | - better VM86 support (dosemu works on non trivial programs) |
36 | - precise exception support (EIP is computed correctly in most cases) | |
37 | - more precise LDT/GDT/IDT emulation | |
38 | - faster segment load in vm86 mode | |
39 | - direct chaining of basic blocks (faster emulation) | |
3c51961e | 40 | |
66cd5846 FB |
41 | version 0.1.6: |
42 | ||
1eb87257 FB |
43 | - automatic library search system. QEMU can now work with unpatched |
44 | ELF dynamic loader and libc (Rusty Russell). | |
66cd5846 | 45 | - ISO C warning fixes (Alistair Strachan) |
1eb87257 FB |
46 | - first self-virtualizable version (works only as long as the |
47 | translation cache is not flushed) | |
48 | - RH9 fixes | |
66cd5846 | 49 | |
27c75a9a FB |
50 | version 0.1.5: |
51 | ||
52 | - ppc64 support + personality() patch (Rusty Russell) | |
53 | - first Alpha CPU patches (Falk Hueffner) | |
54 | - removed bfd.h dependancy | |
55 | - fixed shrd, shld, idivl and divl on PowerPC. | |
56 | - fixed buggy glibc PowerPC rint() function (test-i386 passes now on PowerPC). | |
57 | ||
bc8a22cc FB |
58 | version 0.1.4: |
59 | ||
60 | - more accurate VM86 emulation (can launch small DOS 16 bit | |
61 | executables in wine). | |
62 | - fixed push/pop fs/gs | |
63 | - added iret instruction. | |
27c75a9a | 64 | - added times() syscall and SIOCATMARK ioctl. |
bc8a22cc FB |
65 | |
66 | version 0.1.3: | |
67 | ||
68 | - S390 support (Ulrich Weigand) | |
69 | - glibc 2.3.x compile fix (Ulrich Weigand) | |
70 | - socketcall endian fix (Ulrich Weigand) | |
71 | - struct sockaddr endian fix (Ulrich Weigand) | |
72 | - sendmsg/recvmsg endian fix (Ulrich Weigand) | |
73 | - execve endian fix (Ulrich Weigand) | |
74 | - fdset endian fix (Ulrich Weigand) | |
75 | - partial setsockopt syscall support (Ulrich Weigand) | |
76 | - more accurate pushf/popf emulation | |
77 | - first partial vm86() syscall support (can be used with runcom example). | |
78 | - added bound, cmpxchg8b, cpuid instructions | |
79 | - added 16 bit addressing support/override for string operations | |
80 | - poll() fix | |
81 | ||
82 | version 0.1.2: | |
83 | ||
84 | - compile fixes | |
85 | - xlat instruction | |
86 | - xchg instruction memory lock | |
87 | - added simple vm86 example (not working with QEMU yet). The 54 byte | |
88 | DOS executable 'pi_10.com' program was released by Bertram | |
89 | Felgenhauer (more information at http://www.boo.net/~jasonp/pipage.html). | |
90 | ||
d691f669 FB |
91 | version 0.1.1: |
92 | ||
93 | - glibc 2.2 compilation fixes | |
94 | - added -s and -L options | |
95 | - binary distribution of x86 glibc and wine | |
bc8a22cc | 96 | - big endian fixes in ELF loader and getdents. |
d691f669 | 97 | |
3ef693a0 FB |
98 | version 0.1: |
99 | ||
100 | - initial public release. |