linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] plugins: Do not try to autopair with Nissan Connect devices
@ 2022-08-31 19:30 Florian Leeber
  2022-08-31 19:42 ` bluez.test.bot
                   ` (15 more replies)
  0 siblings, 16 replies; 21+ messages in thread
From: Florian Leeber @ 2022-08-31 19:30 UTC (permalink / raw)
  To: linux-bluetooth

It seems that Nissan Connect carkits a) do not use 0000 but 1234 as 
default code
but also b) the autopair plugin is not allowed to make a second attempt 
to pair.
Let´s try to not use the autopairing at all for those devices.
---
  plugins/autopair.c | 3 +++
  1 file changed, 3 insertions(+)

diff --git a/plugins/autopair.c b/plugins/autopair.c
index 0b09e89..6bf07e3 100644
--- a/plugins/autopair.c
+++ b/plugins/autopair.c
@@ -66,6 +66,9 @@ static ssize_t autopair_pincb(struct btd_adapter *adapter,
         /* The iCade shouldn't use random PINs like normal keyboards */
         if (strstr(name, "iCade") != NULL)
                 return 0;
+       /* Nissan Connect carkits use PIN 1234 but refuse a retry */
+       if (strstr(name, "NISSAN CONNECT") != NULL)
+               return 0;

         /* This is a class-based pincode guesser. Ignore devices with an
          * unknown class.
--
2.17.1


^ permalink raw reply related	[flat|nested] 21+ messages in thread

* RE: plugins: Do not try to autopair with Nissan Connect devices
  2022-08-31 19:30 [PATCH] plugins: Do not try to autopair with Nissan Connect devices Florian Leeber
@ 2022-08-31 19:42 ` bluez.test.bot
  2022-08-31 20:18 ` [PATCH] " Luiz Augusto von Dentz
                   ` (14 subsequent siblings)
  15 siblings, 0 replies; 21+ messages in thread
From: bluez.test.bot @ 2022-08-31 19:42 UTC (permalink / raw)
  To: linux-bluetooth, florian

[-- Attachment #1: Type: text/plain, Size: 537 bytes --]

This is an automated email and please do not reply to this email.

Dear Submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
While preparing the CI tests, the patches you submitted couldn't be applied to the current HEAD of the repository.

----- Output -----
error: patch failed: plugins/autopair.c:66
error: plugins/autopair.c: patch does not apply
hint: Use 'git am --show-current-patch' to see the failed patch


Please resolve the issue and submit the patches again.


---
Regards,
Linux Bluetooth


^ permalink raw reply	[flat|nested] 21+ messages in thread

* Re: [PATCH] plugins: Do not try to autopair with Nissan Connect devices
  2022-08-31 19:30 [PATCH] plugins: Do not try to autopair with Nissan Connect devices Florian Leeber
  2022-08-31 19:42 ` bluez.test.bot
@ 2022-08-31 20:18 ` Luiz Augusto von Dentz
  2022-09-01 10:46   ` Bastien Nocera
  2022-09-29 16:49 ` bluez.test.bot
                   ` (13 subsequent siblings)
  15 siblings, 1 reply; 21+ messages in thread
From: Luiz Augusto von Dentz @ 2022-08-31 20:18 UTC (permalink / raw)
  To: Florian Leeber; +Cc: linux-bluetooth

Hi Florian,

On Wed, Aug 31, 2022 at 12:44 PM Florian Leeber <florian@ubports.com> wrote:
>
> It seems that Nissan Connect carkits a) do not use 0000 but 1234 as
> default code
> but also b) the autopair plugin is not allowed to make a second attempt
> to pair.
> Let´s try to not use the autopairing at all for those devices.
> ---
>   plugins/autopair.c | 3 +++
>   1 file changed, 3 insertions(+)
>
> diff --git a/plugins/autopair.c b/plugins/autopair.c
> index 0b09e89..6bf07e3 100644
> --- a/plugins/autopair.c
> +++ b/plugins/autopair.c
> @@ -66,6 +66,9 @@ static ssize_t autopair_pincb(struct btd_adapter *adapter,
>          /* The iCade shouldn't use random PINs like normal keyboards */
>          if (strstr(name, "iCade") != NULL)
>                  return 0;
> +       /* Nissan Connect carkits use PIN 1234 but refuse a retry */
> +       if (strstr(name, "NISSAN CONNECT") != NULL)
> +               return 0;

Well this is already starting to grow which imo defeats the purpose of
hardcoding directly on the code so perhaps we could have a section
e.g. [Autopair] where one can enter device names that shall not use
defaults PINs, or may an entry where one can add its own specific PIN
sequence for a given device name including none:

[Autopair]
PIN=0000,1234
# The iCade shouldn't use random PINs like normal keyboards
iCade=
# Nissan Connect carkits use PIN 1234 but it refuses retries
NISSAN CONNECT=1234

With this the logic is check if there is an entry for the device name
and then use as PIN otherwise use the PIN entry (if not defined use
the current settings as default).

>          /* This is a class-based pincode guesser. Ignore devices with an
>           * unknown class.
> --
> 2.17.1
>


-- 
Luiz Augusto von Dentz

^ permalink raw reply	[flat|nested] 21+ messages in thread

* Re: [PATCH] plugins: Do not try to autopair with Nissan Connect devices
  2022-08-31 20:18 ` [PATCH] " Luiz Augusto von Dentz
@ 2022-09-01 10:46   ` Bastien Nocera
  2022-09-01 18:10     ` Florian Leeber
  0 siblings, 1 reply; 21+ messages in thread
From: Bastien Nocera @ 2022-09-01 10:46 UTC (permalink / raw)
  To: Luiz Augusto von Dentz, Florian Leeber; +Cc: linux-bluetooth

On Wed, 2022-08-31 at 13:18 -0700, Luiz Augusto von Dentz wrote:
> Hi Florian,
> 
> On Wed, Aug 31, 2022 at 12:44 PM Florian Leeber <florian@ubports.com>
> wrote:
> > 
> > It seems that Nissan Connect carkits a) do not use 0000 but 1234 as
> > default code
> > but also b) the autopair plugin is not allowed to make a second
> > attempt
> > to pair.
> > Let´s try to not use the autopairing at all for those devices.
> > ---
> >   plugins/autopair.c | 3 +++
> >   1 file changed, 3 insertions(+)
> > 
> > diff --git a/plugins/autopair.c b/plugins/autopair.c
> > index 0b09e89..6bf07e3 100644
> > --- a/plugins/autopair.c
> > +++ b/plugins/autopair.c
> > @@ -66,6 +66,9 @@ static ssize_t autopair_pincb(struct btd_adapter
> > *adapter,
> >          /* The iCade shouldn't use random PINs like normal
> > keyboards */
> >          if (strstr(name, "iCade") != NULL)
> >                  return 0;
> > +       /* Nissan Connect carkits use PIN 1234 but refuse a retry
> > */
> > +       if (strstr(name, "NISSAN CONNECT") != NULL)
> > +               return 0;
> 
> Well this is already starting to grow which imo defeats the purpose
> of
> hardcoding directly on the code so perhaps we could have a section
> e.g. [Autopair] where one can enter device names that shall not use
> defaults PINs, or may an entry where one can add its own specific PIN
> sequence for a given device name including none:
> 
> [Autopair]
> PIN=0000,1234
> # The iCade shouldn't use random PINs like normal keyboards
> iCade=
> # Nissan Connect carkits use PIN 1234 but it refuses retries
> NISSAN CONNECT=1234
> 
> With this the logic is check if there is an entry for the device name
> and then use as PIN otherwise use the PIN entry (if not defined use
> the current settings as default).

FWIW, gnome-bluetooth has its own database on top of bluez, which we
prefer to the code in bluez. I'd be happy getting rid of it.

Loads of devices that need pairing despite their class and Bluetooth
version, and devices that need special handling like the Navman GPS
that expects a non-numerical PIN.

The database:
https://gitlab.gnome.org/GNOME/gnome-bluetooth/-/blob/master/lib/pin-code-database.xml
The code to parse it:
https://gitlab.gnome.org/GNOME/gnome-bluetooth/-/blob/master/lib/pin.c

^ permalink raw reply	[flat|nested] 21+ messages in thread

* Re: [PATCH] plugins: Do not try to autopair with Nissan Connect devices
  2022-09-01 10:46   ` Bastien Nocera
@ 2022-09-01 18:10     ` Florian Leeber
  2022-09-01 23:56       ` Luiz Augusto von Dentz
  0 siblings, 1 reply; 21+ messages in thread
From: Florian Leeber @ 2022-09-01 18:10 UTC (permalink / raw)
  To: Bastien Nocera, Luiz Augusto von Dentz; +Cc: linux-bluetooth

Am 01.09.2022 um 12:46 schrieb Bastien Nocera:
> On Wed, 2022-08-31 at 13:18 -0700, Luiz Augusto von Dentz wrote:
>> Hi Florian,
>>
>> On Wed, Aug 31, 2022 at 12:44 PM Florian Leeber <florian@ubports.com>
>> wrote:
>> gs as default). 
> FWIW, gnome-bluetooth has its own database on top of bluez, which we
> prefer to the code in bluez. I'd be happy getting rid of it.
>
> Loads of devices that need pairing despite their class and Bluetooth
> version, and devices that need special handling like the Navman GPS
> that expects a non-numerical PIN.
>
> The database:
> https://gitlab.gnome.org/GNOME/gnome-bluetooth/-/blob/master/lib/pin-code-database.xml
> The code to parse it:
> https://gitlab.gnome.org/GNOME/gnome-bluetooth/-/blob/master/lib/pin.c

Oh my, this escalated quickly ;) - tbh implementing this as a fully 
fledged config-based feature might be over my head. I am not proficient 
with the Bluez code at all, and my main work currently is being the OTA 
release manager for Ubuntu Touch. I could only work on this with some 
support to get the basics established.

Thanks for the hint with the database, we did not know about this.



^ permalink raw reply	[flat|nested] 21+ messages in thread

* Re: [PATCH] plugins: Do not try to autopair with Nissan Connect devices
  2022-09-01 18:10     ` Florian Leeber
@ 2022-09-01 23:56       ` Luiz Augusto von Dentz
  2022-09-02 18:50         ` Florian Leeber
  0 siblings, 1 reply; 21+ messages in thread
From: Luiz Augusto von Dentz @ 2022-09-01 23:56 UTC (permalink / raw)
  To: Florian Leeber; +Cc: Bastien Nocera, linux-bluetooth

Hi Florian,

On Thu, Sep 1, 2022 at 11:10 AM Florian Leeber <florian@ubports.com> wrote:
>
> Am 01.09.2022 um 12:46 schrieb Bastien Nocera:
> > On Wed, 2022-08-31 at 13:18 -0700, Luiz Augusto von Dentz wrote:
> >> Hi Florian,
> >>
> >> On Wed, Aug 31, 2022 at 12:44 PM Florian Leeber <florian@ubports.com>
> >> wrote:
> >> gs as default).
> > FWIW, gnome-bluetooth has its own database on top of bluez, which we
> > prefer to the code in bluez. I'd be happy getting rid of it.
> >
> > Loads of devices that need pairing despite their class and Bluetooth
> > version, and devices that need special handling like the Navman GPS
> > that expects a non-numerical PIN.
> >
> > The database:
> > https://gitlab.gnome.org/GNOME/gnome-bluetooth/-/blob/master/lib/pin-code-database.xml
> > The code to parse it:
> > https://gitlab.gnome.org/GNOME/gnome-bluetooth/-/blob/master/lib/pin.c
>
> Oh my, this escalated quickly ;) - tbh implementing this as a fully
> fledged config-based feature might be over my head. I am not proficient
> with the Bluez code at all, and my main work currently is being the OTA
> release manager for Ubuntu Touch. I could only work on this with some
> support to get the basics established.
>
> Thanks for the hint with the database, we did not know about this.

Can't you solve the problem in the agent thought? Or does the current
logic make the pairing fail right away?

>


-- 
Luiz Augusto von Dentz

^ permalink raw reply	[flat|nested] 21+ messages in thread

* Re: [PATCH] plugins: Do not try to autopair with Nissan Connect devices
  2022-09-01 23:56       ` Luiz Augusto von Dentz
@ 2022-09-02 18:50         ` Florian Leeber
  0 siblings, 0 replies; 21+ messages in thread
From: Florian Leeber @ 2022-09-02 18:50 UTC (permalink / raw)
  To: Luiz Augusto von Dentz; +Cc: Bastien Nocera, linux-bluetooth

Am 02.09.2022 um 01:56 schrieb Luiz Augusto von Dentz:
> Hi Florian,
>
> On Thu, Sep 1, 2022 at 11:10 AM Florian Leeber <florian@ubports.com> wrote:
>> Am 01.09.2022 um 12:46 schrieb Bastien Nocera:
>>> On Wed, 2022-08-31 at 13:18 -0700, Luiz Augusto von Dentz wrote:
>>>> Hi Florian,
>>>>
>>>>
> Can't you solve the problem in the agent thought? Or does the current
> logic make the pairing fail right away?
>
The problem seems to be that the carkit allows only one try. After a 
failed code it cancels the pairing (Seems they violate the specs?). So I 
could either resort the list to make 1234 being the first to try. But I 
think this would maybe affect other stuff and 0000 is probably the most 
used default code.



^ permalink raw reply	[flat|nested] 21+ messages in thread

* RE: plugins: Do not try to autopair with Nissan Connect devices
  2022-08-31 19:30 [PATCH] plugins: Do not try to autopair with Nissan Connect devices Florian Leeber
  2022-08-31 19:42 ` bluez.test.bot
  2022-08-31 20:18 ` [PATCH] " Luiz Augusto von Dentz
@ 2022-09-29 16:49 ` bluez.test.bot
  2022-09-29 17:44 ` bluez.test.bot
                   ` (12 subsequent siblings)
  15 siblings, 0 replies; 21+ messages in thread
From: bluez.test.bot @ 2022-09-29 16:49 UTC (permalink / raw)
  To: linux-bluetooth, florian

[-- Attachment #1: Type: text/plain, Size: 537 bytes --]

This is an automated email and please do not reply to this email.

Dear Submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
While preparing the CI tests, the patches you submitted couldn't be applied to the current HEAD of the repository.

----- Output -----
error: patch failed: plugins/autopair.c:66
error: plugins/autopair.c: patch does not apply
hint: Use 'git am --show-current-patch' to see the failed patch


Please resolve the issue and submit the patches again.


---
Regards,
Linux Bluetooth


^ permalink raw reply	[flat|nested] 21+ messages in thread

* RE: plugins: Do not try to autopair with Nissan Connect devices
  2022-08-31 19:30 [PATCH] plugins: Do not try to autopair with Nissan Connect devices Florian Leeber
                   ` (2 preceding siblings ...)
  2022-09-29 16:49 ` bluez.test.bot
@ 2022-09-29 17:44 ` bluez.test.bot
  2022-09-29 18:40 ` bluez.test.bot
                   ` (11 subsequent siblings)
  15 siblings, 0 replies; 21+ messages in thread
From: bluez.test.bot @ 2022-09-29 17:44 UTC (permalink / raw)
  To: linux-bluetooth, florian

[-- Attachment #1: Type: text/plain, Size: 537 bytes --]

This is an automated email and please do not reply to this email.

Dear Submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
While preparing the CI tests, the patches you submitted couldn't be applied to the current HEAD of the repository.

----- Output -----
error: patch failed: plugins/autopair.c:66
error: plugins/autopair.c: patch does not apply
hint: Use 'git am --show-current-patch' to see the failed patch


Please resolve the issue and submit the patches again.


---
Regards,
Linux Bluetooth


^ permalink raw reply	[flat|nested] 21+ messages in thread

* RE: plugins: Do not try to autopair with Nissan Connect devices
  2022-08-31 19:30 [PATCH] plugins: Do not try to autopair with Nissan Connect devices Florian Leeber
                   ` (3 preceding siblings ...)
  2022-09-29 17:44 ` bluez.test.bot
@ 2022-09-29 18:40 ` bluez.test.bot
  2022-09-29 19:01 ` bluez.test.bot
                   ` (10 subsequent siblings)
  15 siblings, 0 replies; 21+ messages in thread
From: bluez.test.bot @ 2022-09-29 18:40 UTC (permalink / raw)
  To: linux-bluetooth, florian

[-- Attachment #1: Type: text/plain, Size: 537 bytes --]

This is an automated email and please do not reply to this email.

Dear Submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
While preparing the CI tests, the patches you submitted couldn't be applied to the current HEAD of the repository.

----- Output -----
error: patch failed: plugins/autopair.c:66
error: plugins/autopair.c: patch does not apply
hint: Use 'git am --show-current-patch' to see the failed patch


Please resolve the issue and submit the patches again.


---
Regards,
Linux Bluetooth


^ permalink raw reply	[flat|nested] 21+ messages in thread

* RE: plugins: Do not try to autopair with Nissan Connect devices
  2022-08-31 19:30 [PATCH] plugins: Do not try to autopair with Nissan Connect devices Florian Leeber
                   ` (4 preceding siblings ...)
  2022-09-29 18:40 ` bluez.test.bot
@ 2022-09-29 19:01 ` bluez.test.bot
  2022-09-29 19:29 ` bluez.test.bot
                   ` (9 subsequent siblings)
  15 siblings, 0 replies; 21+ messages in thread
From: bluez.test.bot @ 2022-09-29 19:01 UTC (permalink / raw)
  To: linux-bluetooth, florian

[-- Attachment #1: Type: text/plain, Size: 537 bytes --]

This is an automated email and please do not reply to this email.

Dear Submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
While preparing the CI tests, the patches you submitted couldn't be applied to the current HEAD of the repository.

----- Output -----
error: patch failed: plugins/autopair.c:66
error: plugins/autopair.c: patch does not apply
hint: Use 'git am --show-current-patch' to see the failed patch


Please resolve the issue and submit the patches again.


---
Regards,
Linux Bluetooth


^ permalink raw reply	[flat|nested] 21+ messages in thread

* RE: plugins: Do not try to autopair with Nissan Connect devices
  2022-08-31 19:30 [PATCH] plugins: Do not try to autopair with Nissan Connect devices Florian Leeber
                   ` (5 preceding siblings ...)
  2022-09-29 19:01 ` bluez.test.bot
@ 2022-09-29 19:29 ` bluez.test.bot
  2022-09-29 19:47 ` bluez.test.bot
                   ` (8 subsequent siblings)
  15 siblings, 0 replies; 21+ messages in thread
From: bluez.test.bot @ 2022-09-29 19:29 UTC (permalink / raw)
  To: linux-bluetooth, florian

[-- Attachment #1: Type: text/plain, Size: 537 bytes --]

This is an automated email and please do not reply to this email.

Dear Submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
While preparing the CI tests, the patches you submitted couldn't be applied to the current HEAD of the repository.

----- Output -----
error: patch failed: plugins/autopair.c:66
error: plugins/autopair.c: patch does not apply
hint: Use 'git am --show-current-patch' to see the failed patch


Please resolve the issue and submit the patches again.


---
Regards,
Linux Bluetooth


^ permalink raw reply	[flat|nested] 21+ messages in thread

* RE: plugins: Do not try to autopair with Nissan Connect devices
  2022-08-31 19:30 [PATCH] plugins: Do not try to autopair with Nissan Connect devices Florian Leeber
                   ` (6 preceding siblings ...)
  2022-09-29 19:29 ` bluez.test.bot
@ 2022-09-29 19:47 ` bluez.test.bot
  2022-09-29 20:34 ` bluez.test.bot
                   ` (7 subsequent siblings)
  15 siblings, 0 replies; 21+ messages in thread
From: bluez.test.bot @ 2022-09-29 19:47 UTC (permalink / raw)
  To: linux-bluetooth, florian

[-- Attachment #1: Type: text/plain, Size: 537 bytes --]

This is an automated email and please do not reply to this email.

Dear Submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
While preparing the CI tests, the patches you submitted couldn't be applied to the current HEAD of the repository.

----- Output -----
error: patch failed: plugins/autopair.c:66
error: plugins/autopair.c: patch does not apply
hint: Use 'git am --show-current-patch' to see the failed patch


Please resolve the issue and submit the patches again.


---
Regards,
Linux Bluetooth


^ permalink raw reply	[flat|nested] 21+ messages in thread

* RE: plugins: Do not try to autopair with Nissan Connect devices
  2022-08-31 19:30 [PATCH] plugins: Do not try to autopair with Nissan Connect devices Florian Leeber
                   ` (7 preceding siblings ...)
  2022-09-29 19:47 ` bluez.test.bot
@ 2022-09-29 20:34 ` bluez.test.bot
  2022-09-29 20:53 ` bluez.test.bot
                   ` (6 subsequent siblings)
  15 siblings, 0 replies; 21+ messages in thread
From: bluez.test.bot @ 2022-09-29 20:34 UTC (permalink / raw)
  To: linux-bluetooth, florian

[-- Attachment #1: Type: text/plain, Size: 537 bytes --]

This is an automated email and please do not reply to this email.

Dear Submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
While preparing the CI tests, the patches you submitted couldn't be applied to the current HEAD of the repository.

----- Output -----
error: patch failed: plugins/autopair.c:66
error: plugins/autopair.c: patch does not apply
hint: Use 'git am --show-current-patch' to see the failed patch


Please resolve the issue and submit the patches again.


---
Regards,
Linux Bluetooth


^ permalink raw reply	[flat|nested] 21+ messages in thread

* RE: plugins: Do not try to autopair with Nissan Connect devices
  2022-08-31 19:30 [PATCH] plugins: Do not try to autopair with Nissan Connect devices Florian Leeber
                   ` (8 preceding siblings ...)
  2022-09-29 20:34 ` bluez.test.bot
@ 2022-09-29 20:53 ` bluez.test.bot
  2022-09-29 21:30 ` bluez.test.bot
                   ` (5 subsequent siblings)
  15 siblings, 0 replies; 21+ messages in thread
From: bluez.test.bot @ 2022-09-29 20:53 UTC (permalink / raw)
  To: linux-bluetooth, florian

[-- Attachment #1: Type: text/plain, Size: 537 bytes --]

This is an automated email and please do not reply to this email.

Dear Submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
While preparing the CI tests, the patches you submitted couldn't be applied to the current HEAD of the repository.

----- Output -----
error: patch failed: plugins/autopair.c:66
error: plugins/autopair.c: patch does not apply
hint: Use 'git am --show-current-patch' to see the failed patch


Please resolve the issue and submit the patches again.


---
Regards,
Linux Bluetooth


^ permalink raw reply	[flat|nested] 21+ messages in thread

* RE: plugins: Do not try to autopair with Nissan Connect devices
  2022-08-31 19:30 [PATCH] plugins: Do not try to autopair with Nissan Connect devices Florian Leeber
                   ` (9 preceding siblings ...)
  2022-09-29 20:53 ` bluez.test.bot
@ 2022-09-29 21:30 ` bluez.test.bot
  2022-09-29 21:52 ` bluez.test.bot
                   ` (4 subsequent siblings)
  15 siblings, 0 replies; 21+ messages in thread
From: bluez.test.bot @ 2022-09-29 21:30 UTC (permalink / raw)
  To: linux-bluetooth, florian

[-- Attachment #1: Type: text/plain, Size: 537 bytes --]

This is an automated email and please do not reply to this email.

Dear Submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
While preparing the CI tests, the patches you submitted couldn't be applied to the current HEAD of the repository.

----- Output -----
error: patch failed: plugins/autopair.c:66
error: plugins/autopair.c: patch does not apply
hint: Use 'git am --show-current-patch' to see the failed patch


Please resolve the issue and submit the patches again.


---
Regards,
Linux Bluetooth


^ permalink raw reply	[flat|nested] 21+ messages in thread

* RE: plugins: Do not try to autopair with Nissan Connect devices
  2022-08-31 19:30 [PATCH] plugins: Do not try to autopair with Nissan Connect devices Florian Leeber
                   ` (10 preceding siblings ...)
  2022-09-29 21:30 ` bluez.test.bot
@ 2022-09-29 21:52 ` bluez.test.bot
  2022-09-29 22:32 ` bluez.test.bot
                   ` (3 subsequent siblings)
  15 siblings, 0 replies; 21+ messages in thread
From: bluez.test.bot @ 2022-09-29 21:52 UTC (permalink / raw)
  To: linux-bluetooth, florian

[-- Attachment #1: Type: text/plain, Size: 537 bytes --]

This is an automated email and please do not reply to this email.

Dear Submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
While preparing the CI tests, the patches you submitted couldn't be applied to the current HEAD of the repository.

----- Output -----
error: patch failed: plugins/autopair.c:66
error: plugins/autopair.c: patch does not apply
hint: Use 'git am --show-current-patch' to see the failed patch


Please resolve the issue and submit the patches again.


---
Regards,
Linux Bluetooth


^ permalink raw reply	[flat|nested] 21+ messages in thread

* RE: plugins: Do not try to autopair with Nissan Connect devices
  2022-08-31 19:30 [PATCH] plugins: Do not try to autopair with Nissan Connect devices Florian Leeber
                   ` (11 preceding siblings ...)
  2022-09-29 21:52 ` bluez.test.bot
@ 2022-09-29 22:32 ` bluez.test.bot
  2022-09-29 22:52 ` bluez.test.bot
                   ` (2 subsequent siblings)
  15 siblings, 0 replies; 21+ messages in thread
From: bluez.test.bot @ 2022-09-29 22:32 UTC (permalink / raw)
  To: linux-bluetooth, florian

[-- Attachment #1: Type: text/plain, Size: 537 bytes --]

This is an automated email and please do not reply to this email.

Dear Submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
While preparing the CI tests, the patches you submitted couldn't be applied to the current HEAD of the repository.

----- Output -----
error: patch failed: plugins/autopair.c:66
error: plugins/autopair.c: patch does not apply
hint: Use 'git am --show-current-patch' to see the failed patch


Please resolve the issue and submit the patches again.


---
Regards,
Linux Bluetooth


^ permalink raw reply	[flat|nested] 21+ messages in thread

* RE: plugins: Do not try to autopair with Nissan Connect devices
  2022-08-31 19:30 [PATCH] plugins: Do not try to autopair with Nissan Connect devices Florian Leeber
                   ` (12 preceding siblings ...)
  2022-09-29 22:32 ` bluez.test.bot
@ 2022-09-29 22:52 ` bluez.test.bot
  2022-09-29 23:40 ` bluez.test.bot
  2022-09-29 23:59 ` bluez.test.bot
  15 siblings, 0 replies; 21+ messages in thread
From: bluez.test.bot @ 2022-09-29 22:52 UTC (permalink / raw)
  To: linux-bluetooth, florian

[-- Attachment #1: Type: text/plain, Size: 537 bytes --]

This is an automated email and please do not reply to this email.

Dear Submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
While preparing the CI tests, the patches you submitted couldn't be applied to the current HEAD of the repository.

----- Output -----
error: patch failed: plugins/autopair.c:66
error: plugins/autopair.c: patch does not apply
hint: Use 'git am --show-current-patch' to see the failed patch


Please resolve the issue and submit the patches again.


---
Regards,
Linux Bluetooth


^ permalink raw reply	[flat|nested] 21+ messages in thread

* RE: plugins: Do not try to autopair with Nissan Connect devices
  2022-08-31 19:30 [PATCH] plugins: Do not try to autopair with Nissan Connect devices Florian Leeber
                   ` (13 preceding siblings ...)
  2022-09-29 22:52 ` bluez.test.bot
@ 2022-09-29 23:40 ` bluez.test.bot
  2022-09-29 23:59 ` bluez.test.bot
  15 siblings, 0 replies; 21+ messages in thread
From: bluez.test.bot @ 2022-09-29 23:40 UTC (permalink / raw)
  To: linux-bluetooth, florian

[-- Attachment #1: Type: text/plain, Size: 537 bytes --]

This is an automated email and please do not reply to this email.

Dear Submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
While preparing the CI tests, the patches you submitted couldn't be applied to the current HEAD of the repository.

----- Output -----
error: patch failed: plugins/autopair.c:66
error: plugins/autopair.c: patch does not apply
hint: Use 'git am --show-current-patch' to see the failed patch


Please resolve the issue and submit the patches again.


---
Regards,
Linux Bluetooth


^ permalink raw reply	[flat|nested] 21+ messages in thread

* RE: plugins: Do not try to autopair with Nissan Connect devices
  2022-08-31 19:30 [PATCH] plugins: Do not try to autopair with Nissan Connect devices Florian Leeber
                   ` (14 preceding siblings ...)
  2022-09-29 23:40 ` bluez.test.bot
@ 2022-09-29 23:59 ` bluez.test.bot
  15 siblings, 0 replies; 21+ messages in thread
From: bluez.test.bot @ 2022-09-29 23:59 UTC (permalink / raw)
  To: linux-bluetooth, florian

[-- Attachment #1: Type: text/plain, Size: 537 bytes --]

This is an automated email and please do not reply to this email.

Dear Submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
While preparing the CI tests, the patches you submitted couldn't be applied to the current HEAD of the repository.

----- Output -----
error: patch failed: plugins/autopair.c:66
error: plugins/autopair.c: patch does not apply
hint: Use 'git am --show-current-patch' to see the failed patch


Please resolve the issue and submit the patches again.


---
Regards,
Linux Bluetooth


^ permalink raw reply	[flat|nested] 21+ messages in thread

end of thread, other threads:[~2022-09-29 23:59 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-31 19:30 [PATCH] plugins: Do not try to autopair with Nissan Connect devices Florian Leeber
2022-08-31 19:42 ` bluez.test.bot
2022-08-31 20:18 ` [PATCH] " Luiz Augusto von Dentz
2022-09-01 10:46   ` Bastien Nocera
2022-09-01 18:10     ` Florian Leeber
2022-09-01 23:56       ` Luiz Augusto von Dentz
2022-09-02 18:50         ` Florian Leeber
2022-09-29 16:49 ` bluez.test.bot
2022-09-29 17:44 ` bluez.test.bot
2022-09-29 18:40 ` bluez.test.bot
2022-09-29 19:01 ` bluez.test.bot
2022-09-29 19:29 ` bluez.test.bot
2022-09-29 19:47 ` bluez.test.bot
2022-09-29 20:34 ` bluez.test.bot
2022-09-29 20:53 ` bluez.test.bot
2022-09-29 21:30 ` bluez.test.bot
2022-09-29 21:52 ` bluez.test.bot
2022-09-29 22:32 ` bluez.test.bot
2022-09-29 22:52 ` bluez.test.bot
2022-09-29 23:40 ` bluez.test.bot
2022-09-29 23:59 ` bluez.test.bot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).