Statistics
| Branch: | Revision:

root / Changelog @ b67d5959

History | View | Annotate | Download (4.2 kB)

1 9368caf6 bellard
version 0.4.4:
2 9368caf6 bellard
  
3 9368caf6 bellard
  - full hardware level VGA emulation
4 9368caf6 bellard
  - graphical display with SDL
5 9368caf6 bellard
  - added PS/2 mouse and keyboard emulation
6 9368caf6 bellard
  - popw (%esp) fix
7 9368caf6 bellard
  - mov to/from segment data width fix
8 9368caf6 bellard
  - added real mode support
9 9368caf6 bellard
  - added Bochs BIOS and LGPL'ed VGA BIOS loader in vl
10 9368caf6 bellard
  - m68k host port (Richard Zidlicky)
11 9368caf6 bellard
  - partial soft MMU support for memory mapped I/Os
12 9368caf6 bellard
  - multi-target build
13 9368caf6 bellard
14 9d0fe224 bellard
version 0.4.3:
15 9d0fe224 bellard
16 9d0fe224 bellard
  - x86 exception fix in case of nop instruction.
17 9d0fe224 bellard
  - gcc 3.2.2 bug workaround (RedHat 9 fix)
18 9d0fe224 bellard
  - sparc and Alpha host fixes
19 9d0fe224 bellard
  - many ARM target fixes: 'ls' and 'bash' can be launched.
20 9d0fe224 bellard
21 4690764b bellard
version 0.4.2:
22 4690764b bellard
23 4690764b bellard
 - many exception handling fixes (can compile a Linux kernel inside vl)
24 4690764b bellard
 - IDE emulation support
25 4690764b bellard
 - initial GDB stub support
26 4690764b bellard
 - deferred update support for disk images (Rusty Russell)
27 9d0fe224 bellard
 - accept User Mode Linux Copy On Write disk images
28 4690764b bellard
 - SMP kernels can at least be booted
29 4690764b bellard
30 d5a0b50c bellard
version 0.4.1:
31 d5a0b50c bellard
  
32 d5a0b50c bellard
 - more accurate timer support in vl.
33 d5a0b50c bellard
 - more reliable NE2000 probe in vl.
34 d5a0b50c bellard
 - added 2.5.66 kernel in vl-test.
35 d5a0b50c bellard
 - added VLTMPDIR environment variable in vl.
36 d5a0b50c bellard
37 6c0372d3 bellard
version 0.4:
38 6c0372d3 bellard
39 6c0372d3 bellard
 - initial support for ring 0 x86 processor emulation
40 6c0372d3 bellard
 - fixed signal handling for correct dosemu DPMI emulation
41 6c0372d3 bellard
 - fast x86 MMU emulation with mmap()
42 6c0372d3 bellard
 - fixed popl (%esp) case
43 1eb20527 bellard
 - Linux kernel can be executed by QEMU with the 'vl' command.
44 6c0372d3 bellard
45 411bffc4 bellard
version 0.3:
46 de83cd02 bellard
47 de83cd02 bellard
 - initial support for ARM emulation
48 411bffc4 bellard
 - added fnsave, frstor, fnstenv, fldenv FPU instructions
49 411bffc4 bellard
 - added FPU register save in signal emulation
50 322d0c66 bellard
 - initial ARM port
51 de83cd02 bellard
 - Sparc and Alpha ports work on the regression test
52 de83cd02 bellard
 - generic ioctl number conversion
53 de83cd02 bellard
 - fixed ioctl type conversion
54 411bffc4 bellard
55 3c51961e bellard
version 0.2:
56 3c51961e bellard
57 1eb20527 bellard
 - PowerPC disassembly and ELF symbols output (Rusty Russell)
58 1eb20527 bellard
 - flock support (Rusty Russell)
59 1eb20527 bellard
 - ugetrlimit support (Rusty Russell)
60 1eb20527 bellard
 - fstat64 fix (Rusty Russell)
61 3c51961e bellard
 - initial Alpha port (Falk Hueffner)
62 3c51961e bellard
 - initial IA64 port (Matt Wilson)
63 3c51961e bellard
 - initial Sparc and Sparc64 port (David S. Miller)
64 86840ae2 bellard
 - added HLT instruction
65 70e19860 bellard
 - LRET instruction fix.
66 70e19860 bellard
 - added GPF generation for I/Os.
67 70e19860 bellard
 - added INT3 and TF flag support.
68 70e19860 bellard
 - SHL instruction C flag fix.
69 70e19860 bellard
 - mmap emulation for host page size > 4KB
70 70e19860 bellard
 - self-modifying code support
71 df0f11a0 bellard
 - better VM86 support (dosemu works on non trivial programs)
72 df0f11a0 bellard
 - precise exception support (EIP is computed correctly in most cases)
73 df0f11a0 bellard
 - more precise LDT/GDT/IDT emulation
74 df0f11a0 bellard
 - faster segment load in vm86 mode
75 df0f11a0 bellard
 - direct chaining of basic blocks (faster emulation)
76 3c51961e bellard
77 66cd5846 bellard
version 0.1.6:
78 66cd5846 bellard
79 1eb87257 bellard
 - automatic library search system. QEMU can now work with unpatched
80 1eb87257 bellard
   ELF dynamic loader and libc (Rusty Russell).
81 66cd5846 bellard
 - ISO C warning fixes (Alistair Strachan)
82 1eb87257 bellard
 - first self-virtualizable version (works only as long as the
83 1eb87257 bellard
   translation cache is not flushed)
84 1eb87257 bellard
 - RH9 fixes
85 66cd5846 bellard
86 27c75a9a bellard
version 0.1.5:
87 27c75a9a bellard
88 27c75a9a bellard
 - ppc64 support + personality() patch (Rusty Russell)
89 27c75a9a bellard
 - first Alpha CPU patches (Falk Hueffner)
90 27c75a9a bellard
 - removed bfd.h dependancy
91 27c75a9a bellard
 - fixed shrd, shld, idivl and divl on PowerPC.
92 27c75a9a bellard
 - fixed buggy glibc PowerPC rint() function (test-i386 passes now on PowerPC).
93 27c75a9a bellard
94 bc8a22cc bellard
version 0.1.4:
95 bc8a22cc bellard
96 bc8a22cc bellard
 - more accurate VM86 emulation (can launch small DOS 16 bit
97 bc8a22cc bellard
   executables in wine).
98 bc8a22cc bellard
 - fixed push/pop fs/gs
99 bc8a22cc bellard
 - added iret instruction.
100 27c75a9a bellard
 - added times() syscall and SIOCATMARK ioctl.
101 bc8a22cc bellard
102 bc8a22cc bellard
version 0.1.3:
103 bc8a22cc bellard
104 bc8a22cc bellard
 - S390 support (Ulrich Weigand)
105 bc8a22cc bellard
 - glibc 2.3.x compile fix (Ulrich Weigand)
106 bc8a22cc bellard
 - socketcall endian fix (Ulrich Weigand)
107 bc8a22cc bellard
 - struct sockaddr endian fix (Ulrich Weigand)
108 bc8a22cc bellard
 - sendmsg/recvmsg endian fix (Ulrich Weigand)
109 bc8a22cc bellard
 - execve endian fix (Ulrich Weigand)
110 bc8a22cc bellard
 - fdset endian fix (Ulrich Weigand)
111 bc8a22cc bellard
 - partial setsockopt syscall support (Ulrich Weigand)
112 bc8a22cc bellard
 - more accurate pushf/popf emulation
113 bc8a22cc bellard
 - first partial vm86() syscall support (can be used with runcom example).
114 bc8a22cc bellard
 - added bound, cmpxchg8b, cpuid instructions
115 bc8a22cc bellard
 - added 16 bit addressing support/override for string operations
116 bc8a22cc bellard
 - poll() fix
117 bc8a22cc bellard
 
118 bc8a22cc bellard
version 0.1.2:
119 bc8a22cc bellard
120 bc8a22cc bellard
 - compile fixes
121 bc8a22cc bellard
 - xlat instruction
122 bc8a22cc bellard
 - xchg instruction memory lock
123 bc8a22cc bellard
 - added simple vm86 example (not working with QEMU yet). The 54 byte
124 bc8a22cc bellard
   DOS executable 'pi_10.com' program was released by Bertram
125 bc8a22cc bellard
   Felgenhauer (more information at http://www.boo.net/~jasonp/pipage.html).
126 bc8a22cc bellard
127 d691f669 bellard
version 0.1.1:
128 d691f669 bellard
129 d691f669 bellard
 - glibc 2.2 compilation fixes
130 d691f669 bellard
 - added -s and -L options
131 d691f669 bellard
 - binary distribution of x86 glibc and wine
132 bc8a22cc bellard
 - big endian fixes in ELF loader and getdents.
133 d691f669 bellard
134 3ef693a0 bellard
version 0.1:
135 3ef693a0 bellard
136 3ef693a0 bellard
 - initial public release.