]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
Disable usbserial on grub-emu since our libusb code isn't good enough
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Mon, 13 Sep 2010 22:08:07 +0000 (00:08 +0200)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Mon, 13 Sep 2010 22:08:07 +0000 (00:08 +0200)
yet.

* grub-core/Makefile.core.def (usbserial_common): Disable on emu.
(usbserial_pl2303): Likewise.
(usbserial_ftdi): Likewise.

ChangeLog
grub-core/Makefile.core.def

index 6e29c939e290fee73094360012bafbbb5eb73d58..3a6905800e6efc35f5d1b49ae33e8d0ab0a2cd57 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2010-09-13  Vladimir Serbinenko  <phcoder@gmail.com>
+
+       Disable usbserial on grub-emu since our libusb code isn't good enough
+       yet.
+
+       * grub-core/Makefile.core.def (usbserial_common): Disable on emu.
+       (usbserial_pl2303): Likewise.
+       (usbserial_ftdi): Likewise.
+
 2010-09-13  Vladimir Serbinenko  <phcoder@gmail.com>
 
        * include/grub/disk.h (grub_disk): Remove has_partitions.
index 05890d248d8aadecbb88574341fe166c045be3e2..54ffdccf29811aef01d86401403375ad8c5966e4 100644 (file)
@@ -319,25 +319,19 @@ module = {
 module = {
   name = usbserial_common;
   common = bus/usb/serial/common.c;
-  enable = emu;
   enable = usb;
-  emu_condition = COND_GRUB_EMU_USB;
 };
 
 module = {
   name = usbserial_pl2303;
   common = bus/usb/serial/pl2303.c;
-  enable = emu;
   enable = usb;
-  emu_condition = COND_GRUB_EMU_USB;
 };
 
 module = {
   name = usbserial_ftdi;
   common = bus/usb/serial/ftdi.c;
-  enable = emu;
   enable = usb;
-  emu_condition = COND_GRUB_EMU_USB;
 };
 
 module = {