* [PATCH] libusb: Update to version 1.0.25
@ 2022-02-09 21:29 Adolf Belka
2022-02-11 8:51 ` Peter Müller
2022-02-11 9:19 ` Adolf Belka
0 siblings, 2 replies; 4+ messages in thread
From: Adolf Belka @ 2022-02-09 21:29 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1496 bytes --]
- Update from 1.0.24 to 1.0.25
- Update of rootfile not required
- Changelog
2022-01-31: v1.0.25
* Linux: Fix regression with some particular devices
* Linux: Fix regression with libusb_handle_events_timeout_completed()
* Linux: Fix regression with cpu usage in libusb_bulk_transfer
* Darwin (macOS): Add support for detaching kernel drivers with authorization.
* Darwin (macOS): Do not drop partial data on timeout.
* Darwin (macOS): Silence pipe error in set_interface_alt_setting().
* Windows: Fix HID backend missing byte
* Windows: Fix segfault with libusbk driver
* Windows: Fix regression when using libusb0 driver
* Windows: Support LIBUSB_TRANSFER_ADD_ZERO_PACKET on winusb
* New NO_DEVICE_DISCOVERY option replaces WEAK_AUTHORITY option
* Various other bug fixes and improvements
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
lfs/libusb | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lfs/libusb b/lfs/libusb
index 6af376943..ec633ee20 100644
--- a/lfs/libusb
+++ b/lfs/libusb
@@ -24,7 +24,7 @@
include Config
-VER = 1.0.24
+VER = 1.0.25
THISAPP = libusb-$(VER)
DL_FILE = $(THISAPP).tar.bz2
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_MD5 = 5bc27df16155302f308d409e73589872
+$(DL_FILE)_MD5 = 4d8d9aa4656ec1e97eda5ef8d2071aaf
install : $(TARGET)
--
2.35.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] libusb: Update to version 1.0.25
2022-02-09 21:29 [PATCH] libusb: Update to version 1.0.25 Adolf Belka
@ 2022-02-11 8:51 ` Peter Müller
2022-02-11 9:19 ` Adolf Belka
1 sibling, 0 replies; 4+ messages in thread
From: Peter Müller @ 2022-02-11 8:51 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1669 bytes --]
This one should fix #12667, I hope...
Reviewed-by: Peter Müller <peter.mueller(a)ipfire.org>
> - Update from 1.0.24 to 1.0.25
> - Update of rootfile not required
> - Changelog
> 2022-01-31: v1.0.25
> * Linux: Fix regression with some particular devices
> * Linux: Fix regression with libusb_handle_events_timeout_completed()
> * Linux: Fix regression with cpu usage in libusb_bulk_transfer
> * Darwin (macOS): Add support for detaching kernel drivers with authorization.
> * Darwin (macOS): Do not drop partial data on timeout.
> * Darwin (macOS): Silence pipe error in set_interface_alt_setting().
> * Windows: Fix HID backend missing byte
> * Windows: Fix segfault with libusbk driver
> * Windows: Fix regression when using libusb0 driver
> * Windows: Support LIBUSB_TRANSFER_ADD_ZERO_PACKET on winusb
> * New NO_DEVICE_DISCOVERY option replaces WEAK_AUTHORITY option
> * Various other bug fixes and improvements
>
> Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
> ---
> lfs/libusb | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/lfs/libusb b/lfs/libusb
> index 6af376943..ec633ee20 100644
> --- a/lfs/libusb
> +++ b/lfs/libusb
> @@ -24,7 +24,7 @@
>
> include Config
>
> -VER = 1.0.24
> +VER = 1.0.25
>
> THISAPP = libusb-$(VER)
> DL_FILE = $(THISAPP).tar.bz2
> @@ -40,7 +40,7 @@ objects = $(DL_FILE)
>
> $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
>
> -$(DL_FILE)_MD5 = 5bc27df16155302f308d409e73589872
> +$(DL_FILE)_MD5 = 4d8d9aa4656ec1e97eda5ef8d2071aaf
>
> install : $(TARGET)
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] libusb: Update to version 1.0.25
2022-02-09 21:29 [PATCH] libusb: Update to version 1.0.25 Adolf Belka
2022-02-11 8:51 ` Peter Müller
@ 2022-02-11 9:19 ` Adolf Belka
2022-02-11 9:22 ` Adolf Belka
1 sibling, 1 reply; 4+ messages in thread
From: Adolf Belka @ 2022-02-11 9:19 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2034 bytes --]
Hi Everyone,
Having submitted this patch I saw that there is a bug related to libusb
(#12667) I don't know if this will fix the bug or not, although it does
mention fixing a regression with some particular devices in the changelog.
Anyway, feel free to either use or ignore and drop this patch as
appropriate to the bug activities.
Regards,
Adolf.
On 09/02/2022 22:29, Adolf Belka wrote:
> - Update from 1.0.24 to 1.0.25
> - Update of rootfile not required
> - Changelog
> 2022-01-31: v1.0.25
> * Linux: Fix regression with some particular devices
> * Linux: Fix regression with libusb_handle_events_timeout_completed()
> * Linux: Fix regression with cpu usage in libusb_bulk_transfer
> * Darwin (macOS): Add support for detaching kernel drivers with authorization.
> * Darwin (macOS): Do not drop partial data on timeout.
> * Darwin (macOS): Silence pipe error in set_interface_alt_setting().
> * Windows: Fix HID backend missing byte
> * Windows: Fix segfault with libusbk driver
> * Windows: Fix regression when using libusb0 driver
> * Windows: Support LIBUSB_TRANSFER_ADD_ZERO_PACKET on winusb
> * New NO_DEVICE_DISCOVERY option replaces WEAK_AUTHORITY option
> * Various other bug fixes and improvements
>
> Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
> ---
> lfs/libusb | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/lfs/libusb b/lfs/libusb
> index 6af376943..ec633ee20 100644
> --- a/lfs/libusb
> +++ b/lfs/libusb
> @@ -24,7 +24,7 @@
>
> include Config
>
> -VER = 1.0.24
> +VER = 1.0.25
>
> THISAPP = libusb-$(VER)
> DL_FILE = $(THISAPP).tar.bz2
> @@ -40,7 +40,7 @@ objects = $(DL_FILE)
>
> $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
>
> -$(DL_FILE)_MD5 = 5bc27df16155302f308d409e73589872
> +$(DL_FILE)_MD5 = 4d8d9aa4656ec1e97eda5ef8d2071aaf
>
> install : $(TARGET)
>
--
Sent from my laptop
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] libusb: Update to version 1.0.25
2022-02-11 9:19 ` Adolf Belka
@ 2022-02-11 9:22 ` Adolf Belka
0 siblings, 0 replies; 4+ messages in thread
From: Adolf Belka @ 2022-02-11 9:22 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2288 bytes --]
Please ignore reply below.
I just saw that Peter had done a review of the patch.
Sorry for noise on list.
Regards,
Adolf.
On 11/02/2022 10:19, Adolf Belka wrote:
> Hi Everyone,
>
> Having submitted this patch I saw that there is a bug related to
> libusb (#12667) I don't know if this will fix the bug or not, although
> it does mention fixing a regression with some particular devices in
> the changelog.
>
> Anyway, feel free to either use or ignore and drop this patch as
> appropriate to the bug activities.
>
> Regards,
>
> Adolf.
>
> On 09/02/2022 22:29, Adolf Belka wrote:
>> - Update from 1.0.24 to 1.0.25
>> - Update of rootfile not required
>> - Changelog
>> 2022-01-31: v1.0.25
>> * Linux: Fix regression with some particular devices
>> * Linux: Fix regression with
>> libusb_handle_events_timeout_completed()
>> * Linux: Fix regression with cpu usage in libusb_bulk_transfer
>> * Darwin (macOS): Add support for detaching kernel drivers with
>> authorization.
>> * Darwin (macOS): Do not drop partial data on timeout.
>> * Darwin (macOS): Silence pipe error in
>> set_interface_alt_setting().
>> * Windows: Fix HID backend missing byte
>> * Windows: Fix segfault with libusbk driver
>> * Windows: Fix regression when using libusb0 driver
>> * Windows: Support LIBUSB_TRANSFER_ADD_ZERO_PACKET on winusb
>> * New NO_DEVICE_DISCOVERY option replaces WEAK_AUTHORITY option
>> * Various other bug fixes and improvements
>>
>> Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
>> ---
>> lfs/libusb | 4 ++--
>> 1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/lfs/libusb b/lfs/libusb
>> index 6af376943..ec633ee20 100644
>> --- a/lfs/libusb
>> +++ b/lfs/libusb
>> @@ -24,7 +24,7 @@
>> include Config
>> -VER = 1.0.24
>> +VER = 1.0.25
>> THISAPP = libusb-$(VER)
>> DL_FILE = $(THISAPP).tar.bz2
>> @@ -40,7 +40,7 @@ objects = $(DL_FILE)
>> $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
>> -$(DL_FILE)_MD5 = 5bc27df16155302f308d409e73589872
>> +$(DL_FILE)_MD5 = 4d8d9aa4656ec1e97eda5ef8d2071aaf
>> install : $(TARGET)
>
--
Sent from my laptop
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-02-11 9:22 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-09 21:29 [PATCH] libusb: Update to version 1.0.25 Adolf Belka
2022-02-11 8:51 ` Peter Müller
2022-02-11 9:19 ` Adolf Belka
2022-02-11 9:22 ` Adolf Belka
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox