diff options
author | Juergen Lock <nox@FreeBSD.org> | 2007-01-12 00:13:58 +0000 |
---|---|---|
committer | Juergen Lock <nox@FreeBSD.org> | 2007-01-12 00:13:58 +0000 |
commit | 8598b8520e13a49819050a602c13f08e2789ecd2 (patch) | |
tree | 90c5a07e005357500166db494e3209433a39ff66 /emulators/qemu-devel/files/patch-block-raw.c | |
parent | Add missing Jave frontend tarball. (diff) |
Update qemu to 2007-01-11 snapshot:
- add slirp udp fix
[this should fix the dns problems with some guests]
- document slirp problems on recent -current (I don't have a -current box
so if someone wants to help debug this you are most welcome!)
- memsave monitor command
- Dynamic handling of guest mice, by Lonnie Mendez.
- PPC32 Trace Exception and Trap instruction, by Jason Wessel.
- Add -option-rom option to allow loading of PCI option ROMs, by
Anthony Liguori.
- Add -boot n option for x86 using PXE, by Anthony Liguori.
[for use with tuntap]
- Support for Bochs "growing" images, by Volker Ruppert.
- Japanese keyboard patch (kazu)
- Revert -disk patch, as requested by Fabrice. The general idea of this
patch is sound, but the implementation is just too ugly.
[this should fix the hanging linux guests]
- Devfn number for the PIIX3 southbridge, by Aurelien Jarno.
- Increase MIPS BIOS from 128kB to 4MB, by Aurelien Jarno.
- And some more bugfixes.
Approved by: miwi (mentor)
Notes
Notes:
svn path=/head/; revision=182127
Diffstat (limited to 'emulators/qemu-devel/files/patch-block-raw.c')
-rw-r--r-- | emulators/qemu-devel/files/patch-block-raw.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/emulators/qemu-devel/files/patch-block-raw.c b/emulators/qemu-devel/files/patch-block-raw.c index de3e8b712f0d..7d68d282bdaa 100644 --- a/emulators/qemu-devel/files/patch-block-raw.c +++ b/emulators/qemu-devel/files/patch-block-raw.c @@ -1,9 +1,11 @@ Index: qemu/block-raw.c -@@ -51,7 +51,7 @@ +@@ -51,7 +51,10 @@ #include <linux/cdrom.h> #include <linux/fd.h> #endif --#ifdef __FreeBSD__ + #ifdef __FreeBSD__ ++#include <signal.h> ++#endif +#if defined(__FreeBSD__) && __FreeBSD__ > 4 #include <sys/disk.h> #endif |