diff --git a/bochs/.bochsrc b/bochs/.bochsrc index 3ced88839..73ac5d5e4 100644 --- a/bochs/.bochsrc +++ b/bochs/.bochsrc @@ -549,9 +549,9 @@ keyboard_paste_delay: 100000 # mouse button on X11, SDL, wxWidgets and Win32). # With the mouse type option you can select the type of mouse to emulate. # The default value is 'ps2'. The other choices are 'imps2' (wheel mouse -# on PS/2), 'serial', 'serial_wheel', 'serial_msys' (one com port requires -# setting 'mode=mouse') and 'usb' (3-button mouse - one of the USB ports must -# be connected with the 'mouse' device - requires PCI and USB support). +# on PS/2), 'serial', 'serial_wheel' and 'serial_msys' (one com port requires +# setting 'mode=mouse'). To connect a mouse to an USB port, see the 'usb1' +# option (requires PCI and USB support). # # Examples: # mouse: enabled=1 diff --git a/bochs/CHANGES b/bochs/CHANGES index 06ba8c68e..f04949bb1 100644 --- a/bochs/CHANGES +++ b/bochs/CHANGES @@ -21,10 +21,19 @@ Changes after 2.3 release: to enable Intel Core Duo 2 new instructions use --enable-sse3e - I/O devices (Volker) - - initial support for the PIIX4 ACPI controller - - hard disk emulation now supports ATA-6 (LBA48 addressing, UDMA modes) - - VMWare version 4 disk image support added (patch by Sharvil Nanavati) - - experimental USB device change support added + - Floppy + - partial non-DMA mode support (patch by John Comeau) + - Hard drive / cdrom + - hard disk emulation now supports ATA-6 (LBA48 addressing, UDMA modes) + - VMWare version 4 disk image support added (patch by Sharvil Nanavati) + - PCI + - initial support for the PIIX4 ACPI controller + - Serial + - added support for 3-button mouse with Mousesystems protocol + - USB + - experimental USB device change support added + - rewrite of the existing USB devices code + - new USB devices 'disk' and 'tablet' (ported from the Qemu project) - Bochs internal debugger - fixed broken debugger "rc file" option (execute debugger command from file) diff --git a/bochs/config.cc b/bochs/config.cc index 5df50d53a..3089ea239 100755 --- a/bochs/config.cc +++ b/bochs/config.cc @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////// -// $Id: config.cc,v 1.116 2007-03-18 22:27:37 sshwarts Exp $ +// $Id: config.cc,v 1.117 2007-03-27 17:47:14 vruppert Exp $ ///////////////////////////////////////////////////////////////////////// // // Copyright (C) 2002 MandrakeSoft S.A. @@ -804,9 +804,6 @@ void bx_init_options() "imps2", #if BX_SUPPORT_BUSMOUSE "bus", -#endif -#if BX_SUPPORT_PCIUSB - "usb", #endif "serial", "serial_wheel", @@ -818,9 +815,6 @@ void bx_init_options() "The mouse type can be one of these: 'none', 'ps2', 'imps2', 'serial', 'serial_wheel'" #if BX_SUPPORT_BUSMOUSE ", 'bus'" -#endif -#if BX_SUPPORT_PCIUSB - ", 'usb'" #endif , mouse_type_list, diff --git a/bochs/doc/docbook/user/user.dbk b/bochs/doc/docbook/user/user.dbk index 2d5929b46..059e5421e 100644 --- a/bochs/doc/docbook/user/user.dbk +++ b/bochs/doc/docbook/user/user.dbk @@ -1,7 +1,7 @@