diff options
author | Norikatsu Shigemura <nork@FreeBSD.org> | 2006-04-16 02:38:02 +0000 |
---|---|---|
committer | Norikatsu Shigemura <nork@FreeBSD.org> | 2006-04-16 02:38:02 +0000 |
commit | 4ec773e477f188e26c238a78901f77b0d1d523c5 (patch) | |
tree | c15608641aa29337d70ea29da3db07be1b1f097f /emulators/qemu/files/patch-bsdusb.patch | |
parent | Explicitly mount the NFS images ro, instead of relying on the server to (diff) |
Update to 2006-04-14 snapshot.
o no longer needs 3-wire configs when using the emulated serial port.
o update patch-libmath to match this commit: [1]
http://docs.freebsd.org/cgi/mid.cgi?200512021345.jB2Dj6D3057000
o Allow multiple graphics devices.
o ARM Versatile Platform Baseboard emulation.
o Thumb prefetch abort fix.
o simulate a null modem cable.
o 64 bit disassembly.
o USB tablet support (Brad Campbell, Anthony Liguori).
o mouse API changes.
Suggested by: jkim [1]
PR: ports/95826
Submitted by: Juergen Lock <nox@jelal.kn-bremen.de> (maintainer)
Notes
Notes:
svn path=/head/; revision=159675
Diffstat (limited to 'emulators/qemu/files/patch-bsdusb.patch')
-rw-r--r-- | emulators/qemu/files/patch-bsdusb.patch | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/emulators/qemu/files/patch-bsdusb.patch b/emulators/qemu/files/patch-bsdusb.patch index 9fd4ebaa99ff..279c09e49190 100644 --- a/emulators/qemu/files/patch-bsdusb.patch +++ b/emulators/qemu/files/patch-bsdusb.patch @@ -654,7 +654,7 @@ Index: qemu/usb-bsd.c + usb_host_scan(NULL, usb_host_info_device); +} Index: qemu/vl.c -@@ -2820,10 +2822,12 @@ +@@ -3245,14 +3258,17 @@ dev = usb_host_device_open(p); if (!dev) return -1; @@ -664,10 +664,15 @@ Index: qemu/vl.c if (!dev) return -1; + dev->isproxied = 0; + } else if (!strcmp(devname, "tablet")) { + dev = usb_tablet_init(); + if (!dev) + return -1; ++ dev->isproxied = 0; } else { return -1; } -@@ -2852,6 +2856,8 @@ +@@ -3281,6 +3297,8 @@ if (dev && dev->addr == addr) break; } |