All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fix bootstrap-configure command line parsing
@ 2010-03-30 18:07 João Paulo Rechi Vita
  2010-03-30 18:08 ` João Paulo Rechi Vita
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: João Paulo Rechi Vita @ 2010-03-30 18:07 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: João Paulo Rechi Vita

---
 bootstrap-configure |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/bootstrap-configure b/bootstrap-configure
index 44e7ee8..5b7b88f 100755
--- a/bootstrap-configure
+++ b/bootstrap-configure
@@ -8,4 +8,4 @@ fi
     ./configure --enable-maintainer-mode \
 		--enable-debug \
 		--prefix=/usr \
-		--mandir=/usr/share/man
+		--mandir=/usr/share/man $*
-- 
1.6.3.3


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

* Re: [PATCH] Fix bootstrap-configure command line parsing
  2010-03-30 18:07 [PATCH] Fix bootstrap-configure command line parsing João Paulo Rechi Vita
@ 2010-03-30 18:08 ` João Paulo Rechi Vita
  2010-03-30 18:52 ` [PATCH] Add new S-frame types to l2cap parser Gustavo F. Padovan
  2010-04-28 15:41 ` [PATCH] Fix bootstrap-configure command line parsing Johan Hedberg
  2 siblings, 0 replies; 7+ messages in thread
From: João Paulo Rechi Vita @ 2010-03-30 18:08 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: João Paulo Rechi Vita

2010/3/30 João Paulo Rechi Vita <jprvita@gmail.com>:
> ---
>  bootstrap-configure |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/bootstrap-configure b/bootstrap-configure
> index 44e7ee8..5b7b88f 100755
> --- a/bootstrap-configure
> +++ b/bootstrap-configure
> @@ -8,4 +8,4 @@ fi
>     ./configure --enable-maintainer-mode \
>                --enable-debug \
>                --prefix=/usr \
> -               --mandir=/usr/share/man
> +               --mandir=/usr/share/man $*
> --
> 1.6.3.3
>
>

This patch is to bluez-hcidump.

-- 
João Paulo Rechi Vita
http://jprvita.wordpress.com/

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

* [PATCH] Add new S-frame types to l2cap parser
  2010-03-30 18:07 [PATCH] Fix bootstrap-configure command line parsing João Paulo Rechi Vita
  2010-03-30 18:08 ` João Paulo Rechi Vita
@ 2010-03-30 18:52 ` Gustavo F. Padovan
  2010-04-28 15:56   ` Johan Hedberg
  2010-04-28 15:41 ` [PATCH] Fix bootstrap-configure command line parsing Johan Hedberg
  2 siblings, 1 reply; 7+ messages in thread
From: Gustavo F. Padovan @ 2010-03-30 18:52 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: marcel, gustavo

---
 parser/l2cap.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/parser/l2cap.c b/parser/l2cap.c
index 799d4b7..ad3b7ff 100644
--- a/parser/l2cap.c
+++ b/parser/l2cap.c
@@ -352,8 +352,9 @@ static char *supervisory2str(uint8_t supervisory)
 	case 0x01:
 		return "Reject (REJ)";
 	case 0x02:
+		return "Receiver Not Ready (RNR)";
 	case 0x03:
-		return "Reserved Supervisory";
+		return "Select Reject (SREJ)";
 	default:
 		return "Bad Supervisory";
 	}
-- 
1.6.4.4

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

* Re: [PATCH] Fix bootstrap-configure command line parsing
  2010-03-30 18:07 [PATCH] Fix bootstrap-configure command line parsing João Paulo Rechi Vita
  2010-03-30 18:08 ` João Paulo Rechi Vita
  2010-03-30 18:52 ` [PATCH] Add new S-frame types to l2cap parser Gustavo F. Padovan
@ 2010-04-28 15:41 ` Johan Hedberg
  2 siblings, 0 replies; 7+ messages in thread
From: Johan Hedberg @ 2010-04-28 15:41 UTC (permalink / raw)
  To: João Paulo Rechi Vita; +Cc: linux-bluetooth

Hi,

On Tue, Mar 30, 2010, João Paulo Rechi Vita wrote:
> ---
>  bootstrap-configure |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/bootstrap-configure b/bootstrap-configure
> index 44e7ee8..5b7b88f 100755
> --- a/bootstrap-configure
> +++ b/bootstrap-configure
> @@ -8,4 +8,4 @@ fi
>      ./configure --enable-maintainer-mode \
>  		--enable-debug \
>  		--prefix=/usr \
> -		--mandir=/usr/share/man
> +		--mandir=/usr/share/man $*

This patch has now been pushed upstream. Thanks.

Johan

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

* Re: [PATCH] Add new S-frame types to l2cap parser
  2010-03-30 18:52 ` [PATCH] Add new S-frame types to l2cap parser Gustavo F. Padovan
@ 2010-04-28 15:56   ` Johan Hedberg
  0 siblings, 0 replies; 7+ messages in thread
From: Johan Hedberg @ 2010-04-28 15:56 UTC (permalink / raw)
  To: Gustavo F. Padovan; +Cc: linux-bluetooth, marcel, gustavo

Hi,

On Tue, Mar 30, 2010, Gustavo F. Padovan wrote:
> ---
>  parser/l2cap.c |    3 ++-
>  1 files changed, 2 insertions(+), 1 deletions(-)
> 
> diff --git a/parser/l2cap.c b/parser/l2cap.c
> index 799d4b7..ad3b7ff 100644
> --- a/parser/l2cap.c
> +++ b/parser/l2cap.c
> @@ -352,8 +352,9 @@ static char *supervisory2str(uint8_t supervisory)
>  	case 0x01:
>  		return "Reject (REJ)";
>  	case 0x02:
> +		return "Receiver Not Ready (RNR)";
>  	case 0x03:
> -		return "Reserved Supervisory";
> +		return "Select Reject (SREJ)";
>  	default:
>  		return "Bad Supervisory";
>  	}

This one has now been pushed to the upstream bluez-hcidump tree. Thanks.

Johan

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

* [PATCH] Add new S-frame types to l2cap parser
@ 2010-01-05 21:18 Gustavo F. Padovan
  0 siblings, 0 replies; 7+ messages in thread
From: Gustavo F. Padovan @ 2010-01-05 21:18 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: marcel, gustavo

---
 parser/l2cap.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/parser/l2cap.c b/parser/l2cap.c
index 799d4b7..ad3b7ff 100644
--- a/parser/l2cap.c
+++ b/parser/l2cap.c
@@ -352,8 +352,9 @@ static char *supervisory2str(uint8_t supervisory)
 	case 0x01:
 		return "Reject (REJ)";
 	case 0x02:
+		return "Receiver Not Ready (RNR)";
 	case 0x03:
-		return "Reserved Supervisory";
+		return "Select Reject (SREJ)";
 	default:
 		return "Bad Supervisory";
 	}
-- 
1.6.4.4

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

* [PATCH] Add new S-frame types to l2cap parser
@ 2009-08-10  5:58 Gustavo F. Padovan
  0 siblings, 0 replies; 7+ messages in thread
From: Gustavo F. Padovan @ 2009-08-10  5:58 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: marcel, gustavo

---
 parser/l2cap.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/parser/l2cap.c b/parser/l2cap.c
index 436f039..90edbba 100644
--- a/parser/l2cap.c
+++ b/parser/l2cap.c
@@ -352,8 +352,9 @@ static char *supervisory2str(uint8_t supervisory)
 	case 0x01:
 		return "Reject (REJ)";
 	case 0x02:
+		return "Receiver Not Ready (RNR)";
 	case 0x03:
-		return "Reserved Supervisory";
+		return "Select Reject (SREJ)";
 	default:
 		return "Bad Supervisory";
 	}
-- 
1.6.3.3


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

end of thread, other threads:[~2010-04-28 15:56 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-03-30 18:07 [PATCH] Fix bootstrap-configure command line parsing João Paulo Rechi Vita
2010-03-30 18:08 ` João Paulo Rechi Vita
2010-03-30 18:52 ` [PATCH] Add new S-frame types to l2cap parser Gustavo F. Padovan
2010-04-28 15:56   ` Johan Hedberg
2010-04-28 15:41 ` [PATCH] Fix bootstrap-configure command line parsing Johan Hedberg
  -- strict thread matches above, loose matches on Subject: below --
2010-01-05 21:18 [PATCH] Add new S-frame types to l2cap parser Gustavo F. Padovan
2009-08-10  5:58 Gustavo F. Padovan

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.