blob: 525f019e4957ca207838b7a8aeee72655e8e9ee5 [file] [log] [blame]
bellard46907642003-07-07 12:17:46 +00001version 0.4.2:
2
3 - many exception handling fixes (can compile a Linux kernel inside vl)
4 - IDE emulation support
5 - initial GDB stub support
6 - deferred update support for disk images (Rusty Russell)
7 - accept user mode Linux Copy On Write disk images
8 - SMP kernels can at least be booted
9
bellardd5a0b502003-06-27 12:02:03 +000010version 0.4.1:
11
12 - more accurate timer support in vl.
13 - more reliable NE2000 probe in vl.
14 - added 2.5.66 kernel in vl-test.
15 - added VLTMPDIR environment variable in vl.
16
bellard6c0372d2003-06-24 13:40:52 +000017version 0.4:
18
19 - initial support for ring 0 x86 processor emulation
20 - fixed signal handling for correct dosemu DPMI emulation
21 - fast x86 MMU emulation with mmap()
22 - fixed popl (%esp) case
bellard1eb20522003-06-25 16:21:49 +000023 - Linux kernel can be executed by QEMU with the 'vl' command.
bellard6c0372d2003-06-24 13:40:52 +000024
bellard411bffc2003-06-09 15:38:23 +000025version 0.3:
bellardde83cd02003-06-15 20:25:43 +000026
27 - initial support for ARM emulation
bellard411bffc2003-06-09 15:38:23 +000028 - added fnsave, frstor, fnstenv, fldenv FPU instructions
29 - added FPU register save in signal emulation
bellard322d0c62003-06-15 23:29:28 +000030 - initial ARM port
bellardde83cd02003-06-15 20:25:43 +000031 - Sparc and Alpha ports work on the regression test
32 - generic ioctl number conversion
33 - fixed ioctl type conversion
bellard411bffc2003-06-09 15:38:23 +000034
bellard3c519612003-04-29 21:34:02 +000035version 0.2:
36
bellard1eb20522003-06-25 16:21:49 +000037 - PowerPC disassembly and ELF symbols output (Rusty Russell)
38 - flock support (Rusty Russell)
39 - ugetrlimit support (Rusty Russell)
40 - fstat64 fix (Rusty Russell)
bellard3c519612003-04-29 21:34:02 +000041 - initial Alpha port (Falk Hueffner)
42 - initial IA64 port (Matt Wilson)
43 - initial Sparc and Sparc64 port (David S. Miller)
bellard86840ae2003-05-08 15:30:27 +000044 - added HLT instruction
bellard70e19862003-05-14 19:02:49 +000045 - LRET instruction fix.
46 - added GPF generation for I/Os.
47 - added INT3 and TF flag support.
48 - SHL instruction C flag fix.
49 - mmap emulation for host page size > 4KB
50 - self-modifying code support
bellarddf0f11a2003-05-28 00:27:57 +000051 - better VM86 support (dosemu works on non trivial programs)
52 - precise exception support (EIP is computed correctly in most cases)
53 - more precise LDT/GDT/IDT emulation
54 - faster segment load in vm86 mode
55 - direct chaining of basic blocks (faster emulation)
bellard3c519612003-04-29 21:34:02 +000056
bellard66cd5842003-04-10 00:02:58 +000057version 0.1.6:
58
bellard1eb87252003-04-11 01:12:28 +000059 - automatic library search system. QEMU can now work with unpatched
60 ELF dynamic loader and libc (Rusty Russell).
bellard66cd5842003-04-10 00:02:58 +000061 - ISO C warning fixes (Alistair Strachan)
bellard1eb87252003-04-11 01:12:28 +000062 - first self-virtualizable version (works only as long as the
63 translation cache is not flushed)
64 - RH9 fixes
bellard66cd5842003-04-10 00:02:58 +000065
bellard27c75a92003-04-07 21:35:21 +000066version 0.1.5:
67
68 - ppc64 support + personality() patch (Rusty Russell)
69 - first Alpha CPU patches (Falk Hueffner)
70 - removed bfd.h dependancy
71 - fixed shrd, shld, idivl and divl on PowerPC.
72 - fixed buggy glibc PowerPC rint() function (test-i386 passes now on PowerPC).
73
bellardbc8a22c2003-03-30 21:02:40 +000074version 0.1.4:
75
76 - more accurate VM86 emulation (can launch small DOS 16 bit
77 executables in wine).
78 - fixed push/pop fs/gs
79 - added iret instruction.
bellard27c75a92003-04-07 21:35:21 +000080 - added times() syscall and SIOCATMARK ioctl.
bellardbc8a22c2003-03-30 21:02:40 +000081
82version 0.1.3:
83
84 - S390 support (Ulrich Weigand)
85 - glibc 2.3.x compile fix (Ulrich Weigand)
86 - socketcall endian fix (Ulrich Weigand)
87 - struct sockaddr endian fix (Ulrich Weigand)
88 - sendmsg/recvmsg endian fix (Ulrich Weigand)
89 - execve endian fix (Ulrich Weigand)
90 - fdset endian fix (Ulrich Weigand)
91 - partial setsockopt syscall support (Ulrich Weigand)
92 - more accurate pushf/popf emulation
93 - first partial vm86() syscall support (can be used with runcom example).
94 - added bound, cmpxchg8b, cpuid instructions
95 - added 16 bit addressing support/override for string operations
96 - poll() fix
97
98version 0.1.2:
99
100 - compile fixes
101 - xlat instruction
102 - xchg instruction memory lock
103 - added simple vm86 example (not working with QEMU yet). The 54 byte
104 DOS executable 'pi_10.com' program was released by Bertram
105 Felgenhauer (more information at http://www.boo.net/~jasonp/pipage.html).
106
bellardd691f662003-03-24 21:58:34 +0000107version 0.1.1:
108
109 - glibc 2.2 compilation fixes
110 - added -s and -L options
111 - binary distribution of x86 glibc and wine
bellardbc8a22c2003-03-30 21:02:40 +0000112 - big endian fixes in ELF loader and getdents.
bellardd691f662003-03-24 21:58:34 +0000113
bellard3ef693a2003-03-23 20:17:16 +0000114version 0.1:
115
116 - initial public release.