All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] Fix typos
       [not found] <20200830123610.20164-1-iulian.onofrei.ref@yahoo.com>
@ 2020-08-30 12:36 ` Iulian Onofrei
  2020-08-30 16:45   ` Arnout Vandecappelle
  2020-08-30 21:26   ` [Buildroot] [PATCH 1/2] package/libeXosip2: fix typos in help text Iulian Onofrei
  0 siblings, 2 replies; 8+ messages in thread
From: Iulian Onofrei @ 2020-08-30 12:36 UTC (permalink / raw)
  To: buildroot

From: Iulian Onofrei <6d0847b9@opayq.com>

---
 package/libeXosip2/Config.in           | 4 ++--
 package/nvidia-driver/nvidia-driver.mk | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/package/libeXosip2/Config.in b/package/libeXosip2/Config.in
index 4cb8218f20..9fbe9789f8 100644
--- a/package/libeXosip2/Config.in
+++ b/package/libeXosip2/Config.in
@@ -4,10 +4,10 @@ config BR2_PACKAGE_LIBEXOSIP2
 	select BR2_PACKAGE_LIBOSIP2
 	help
 	  eXosip is a library that hides the complexity of using the
-	  SIP protocol for mutlimedia session establishement.
+	  SIP protocol for multimedia session establishment.
 	  This protocol is mainly to be used by VoIP telephony
 	  applications (endpoints or conference server) but might be
-	  also usefull for any application that wish to establish
+	  also useful for any application that wish to establish
 	  sessions like multiplayer games.
 	  eXosip is based in libosip.
 
diff --git a/package/nvidia-driver/nvidia-driver.mk b/package/nvidia-driver/nvidia-driver.mk
index baf2ba2be5..44e34cb7b4 100644
--- a/package/nvidia-driver/nvidia-driver.mk
+++ b/package/nvidia-driver/nvidia-driver.mk
@@ -35,7 +35,7 @@ NVIDIA_DRIVER_PROVIDES += libgl libegl libgles
 # NVidia extensions (which is deemed bad now), while the former follows
 # the newly-introduced vendor-neutral "dispatching" API/ABI:
 #   https://github.com/aritger/linux-opengl-abi-proposal/blob/master/linux-opengl-abi-proposal.txt
-# However, this is not very usefull to us, as we don't support multiple
+# However, this is not very useful to us, as we don't support multiple
 # GL providers at the same time on the system, which this proposal is
 # aimed at supporting.
 #
@@ -84,7 +84,7 @@ endef
 # Those libraries are 'private' libraries requiring an agreement with
 # NVidia to develop code for those libs. There seems to be no restriction
 # on using those libraries (e.g. if the user has such an agreement, or
-# wants to run a third-party program developped under such an agreement).
+# wants to run a third-party program developed under such an agreement).
 ifeq ($(BR2_PACKAGE_NVIDIA_DRIVER_PRIVATE_LIBS),y)
 NVIDIA_DRIVER_LIBS += \
 	libnvidia-ifr.so.$(NVIDIA_DRIVER_VERSION) \
-- 
2.24.3 (Apple Git-128)

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

* [Buildroot] [PATCH] Fix typos
  2020-08-30 12:36 ` [Buildroot] [PATCH] Fix typos Iulian Onofrei
@ 2020-08-30 16:45   ` Arnout Vandecappelle
  2020-08-30 21:26   ` [Buildroot] [PATCH 1/2] package/libeXosip2: fix typos in help text Iulian Onofrei
  1 sibling, 0 replies; 8+ messages in thread
From: Arnout Vandecappelle @ 2020-08-30 16:45 UTC (permalink / raw)
  To: buildroot

 Hi Iulian,

 Thank you for this patch. I wanted to apply this patch while fixing up the
comments below, but there's a fundamental problem...

On 30/08/2020 14:36, Iulian Onofrei via buildroot wrote:
> From: Iulian Onofrei <6d0847b9@opayq.com>

 There must be a Signed-off-by line for yourself.  This is a short way for you
to assert that you are entitled to contribute the patch under Buildroot's
GPL license.  See  http://elinux.org/Developer_Certificate_Of_Origin
for more details.

 If you don't have time to make proper patches according to my comments below,
you can just reply with the Signed-off-by line, and we can take it from there.


> 
> ---
>  package/libeXosip2/Config.in           | 4 ++--
>  package/nvidia-driver/nvidia-driver.mk | 4 ++--

 Please split into two patches, one per package. Also, the summary line should
include the package name. So:

package/libeXosip2: fix typo in help text
package/nvidia-driver: fix typo in comment


 Thanks!

 Regards,
 Arnout

>  2 files changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/package/libeXosip2/Config.in b/package/libeXosip2/Config.in
> index 4cb8218f20..9fbe9789f8 100644
> --- a/package/libeXosip2/Config.in
> +++ b/package/libeXosip2/Config.in
> @@ -4,10 +4,10 @@ config BR2_PACKAGE_LIBEXOSIP2
>  	select BR2_PACKAGE_LIBOSIP2
>  	help
>  	  eXosip is a library that hides the complexity of using the
> -	  SIP protocol for mutlimedia session establishement.
> +	  SIP protocol for multimedia session establishment.
>  	  This protocol is mainly to be used by VoIP telephony
>  	  applications (endpoints or conference server) but might be
> -	  also usefull for any application that wish to establish
> +	  also useful for any application that wish to establish
>  	  sessions like multiplayer games.
>  	  eXosip is based in libosip.
>  
> diff --git a/package/nvidia-driver/nvidia-driver.mk b/package/nvidia-driver/nvidia-driver.mk
> index baf2ba2be5..44e34cb7b4 100644
> --- a/package/nvidia-driver/nvidia-driver.mk
> +++ b/package/nvidia-driver/nvidia-driver.mk
> @@ -35,7 +35,7 @@ NVIDIA_DRIVER_PROVIDES += libgl libegl libgles
>  # NVidia extensions (which is deemed bad now), while the former follows
>  # the newly-introduced vendor-neutral "dispatching" API/ABI:
>  #   https://github.com/aritger/linux-opengl-abi-proposal/blob/master/linux-opengl-abi-proposal.txt
> -# However, this is not very usefull to us, as we don't support multiple
> +# However, this is not very useful to us, as we don't support multiple
>  # GL providers at the same time on the system, which this proposal is
>  # aimed at supporting.
>  #
> @@ -84,7 +84,7 @@ endef
>  # Those libraries are 'private' libraries requiring an agreement with
>  # NVidia to develop code for those libs. There seems to be no restriction
>  # on using those libraries (e.g. if the user has such an agreement, or
> -# wants to run a third-party program developped under such an agreement).
> +# wants to run a third-party program developed under such an agreement).
>  ifeq ($(BR2_PACKAGE_NVIDIA_DRIVER_PRIVATE_LIBS),y)
>  NVIDIA_DRIVER_LIBS += \
>  	libnvidia-ifr.so.$(NVIDIA_DRIVER_VERSION) \
> 

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

* [Buildroot] [PATCH 1/2] package/libeXosip2: fix typos in help text
  2020-08-30 12:36 ` [Buildroot] [PATCH] Fix typos Iulian Onofrei
  2020-08-30 16:45   ` Arnout Vandecappelle
@ 2020-08-30 21:26   ` Iulian Onofrei
  2020-08-30 21:26     ` [Buildroot] [PATCH 2/2] package/nvidia-driver: fix typos in comments Iulian Onofrei
                       ` (2 more replies)
  1 sibling, 3 replies; 8+ messages in thread
From: Iulian Onofrei @ 2020-08-30 21:26 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Iulian Onofrei <iulian.onofrei@yahoo.com>
---
 package/libeXosip2/Config.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/libeXosip2/Config.in b/package/libeXosip2/Config.in
index 4cb8218f20..9fbe9789f8 100644
--- a/package/libeXosip2/Config.in
+++ b/package/libeXosip2/Config.in
@@ -4,10 +4,10 @@ config BR2_PACKAGE_LIBEXOSIP2
 	select BR2_PACKAGE_LIBOSIP2
 	help
 	  eXosip is a library that hides the complexity of using the
-	  SIP protocol for mutlimedia session establishement.
+	  SIP protocol for multimedia session establishment.
 	  This protocol is mainly to be used by VoIP telephony
 	  applications (endpoints or conference server) but might be
-	  also usefull for any application that wish to establish
+	  also useful for any application that wish to establish
 	  sessions like multiplayer games.
 	  eXosip is based in libosip.
 
-- 
2.24.3 (Apple Git-128)

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

* [Buildroot] [PATCH 2/2] package/nvidia-driver: fix typos in comments
  2020-08-30 21:26   ` [Buildroot] [PATCH 1/2] package/libeXosip2: fix typos in help text Iulian Onofrei
@ 2020-08-30 21:26     ` Iulian Onofrei
  2020-08-31  6:43       ` Yann E. MORIN
  2020-09-01 19:36       ` Peter Korsgaard
  2020-08-31  7:08     ` [Buildroot] [PATCH 1/2] package/libeXosip2: fix typos in help text Peter Korsgaard
  2020-09-01 19:36     ` Peter Korsgaard
  2 siblings, 2 replies; 8+ messages in thread
From: Iulian Onofrei @ 2020-08-30 21:26 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Iulian Onofrei <iulian.onofrei@yahoo.com>
---
 package/nvidia-driver/nvidia-driver.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/nvidia-driver/nvidia-driver.mk b/package/nvidia-driver/nvidia-driver.mk
index baf2ba2be5..44e34cb7b4 100644
--- a/package/nvidia-driver/nvidia-driver.mk
+++ b/package/nvidia-driver/nvidia-driver.mk
@@ -35,7 +35,7 @@ NVIDIA_DRIVER_PROVIDES += libgl libegl libgles
 # NVidia extensions (which is deemed bad now), while the former follows
 # the newly-introduced vendor-neutral "dispatching" API/ABI:
 #   https://github.com/aritger/linux-opengl-abi-proposal/blob/master/linux-opengl-abi-proposal.txt
-# However, this is not very usefull to us, as we don't support multiple
+# However, this is not very useful to us, as we don't support multiple
 # GL providers at the same time on the system, which this proposal is
 # aimed at supporting.
 #
@@ -84,7 +84,7 @@ endef
 # Those libraries are 'private' libraries requiring an agreement with
 # NVidia to develop code for those libs. There seems to be no restriction
 # on using those libraries (e.g. if the user has such an agreement, or
-# wants to run a third-party program developped under such an agreement).
+# wants to run a third-party program developed under such an agreement).
 ifeq ($(BR2_PACKAGE_NVIDIA_DRIVER_PRIVATE_LIBS),y)
 NVIDIA_DRIVER_LIBS += \
 	libnvidia-ifr.so.$(NVIDIA_DRIVER_VERSION) \
-- 
2.24.3 (Apple Git-128)

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

* [Buildroot] [PATCH 2/2] package/nvidia-driver: fix typos in comments
  2020-08-30 21:26     ` [Buildroot] [PATCH 2/2] package/nvidia-driver: fix typos in comments Iulian Onofrei
@ 2020-08-31  6:43       ` Yann E. MORIN
  2020-09-01 19:36       ` Peter Korsgaard
  1 sibling, 0 replies; 8+ messages in thread
From: Yann E. MORIN @ 2020-08-31  6:43 UTC (permalink / raw)
  To: buildroot

Iulian, All,

On 2020-08-31 00:26 +0300, Iulian Onofrei spake thusly:
> Signed-off-by: Iulian Onofrei <iulian.onofrei@yahoo.com>

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  package/nvidia-driver/nvidia-driver.mk | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/package/nvidia-driver/nvidia-driver.mk b/package/nvidia-driver/nvidia-driver.mk
> index baf2ba2be5..44e34cb7b4 100644
> --- a/package/nvidia-driver/nvidia-driver.mk
> +++ b/package/nvidia-driver/nvidia-driver.mk
> @@ -35,7 +35,7 @@ NVIDIA_DRIVER_PROVIDES += libgl libegl libgles
>  # NVidia extensions (which is deemed bad now), while the former follows
>  # the newly-introduced vendor-neutral "dispatching" API/ABI:
>  #   https://github.com/aritger/linux-opengl-abi-proposal/blob/master/linux-opengl-abi-proposal.txt
> -# However, this is not very usefull to us, as we don't support multiple
> +# However, this is not very useful to us, as we don't support multiple
>  # GL providers at the same time on the system, which this proposal is
>  # aimed at supporting.
>  #
> @@ -84,7 +84,7 @@ endef
>  # Those libraries are 'private' libraries requiring an agreement with
>  # NVidia to develop code for those libs. There seems to be no restriction
>  # on using those libraries (e.g. if the user has such an agreement, or
> -# wants to run a third-party program developped under such an agreement).
> +# wants to run a third-party program developed under such an agreement).
>  ifeq ($(BR2_PACKAGE_NVIDIA_DRIVER_PRIVATE_LIBS),y)
>  NVIDIA_DRIVER_LIBS += \
>  	libnvidia-ifr.so.$(NVIDIA_DRIVER_VERSION) \
> -- 
> 2.24.3 (Apple Git-128)
> 

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 1/2] package/libeXosip2: fix typos in help text
  2020-08-30 21:26   ` [Buildroot] [PATCH 1/2] package/libeXosip2: fix typos in help text Iulian Onofrei
  2020-08-30 21:26     ` [Buildroot] [PATCH 2/2] package/nvidia-driver: fix typos in comments Iulian Onofrei
@ 2020-08-31  7:08     ` Peter Korsgaard
  2020-09-01 19:36     ` Peter Korsgaard
  2 siblings, 0 replies; 8+ messages in thread
From: Peter Korsgaard @ 2020-08-31  7:08 UTC (permalink / raw)
  To: buildroot

>>>>> "Iulian" == Iulian Onofrei via buildroot <buildroot@busybox.net> writes:

 > Signed-off-by: Iulian Onofrei <iulian.onofrei@yahoo.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 1/2] package/libeXosip2: fix typos in help text
  2020-08-30 21:26   ` [Buildroot] [PATCH 1/2] package/libeXosip2: fix typos in help text Iulian Onofrei
  2020-08-30 21:26     ` [Buildroot] [PATCH 2/2] package/nvidia-driver: fix typos in comments Iulian Onofrei
  2020-08-31  7:08     ` [Buildroot] [PATCH 1/2] package/libeXosip2: fix typos in help text Peter Korsgaard
@ 2020-09-01 19:36     ` Peter Korsgaard
  2 siblings, 0 replies; 8+ messages in thread
From: Peter Korsgaard @ 2020-09-01 19:36 UTC (permalink / raw)
  To: buildroot

>>>>> "Iulian" == Iulian Onofrei via buildroot <buildroot@busybox.net> writes:

 > Signed-off-by: Iulian Onofrei <iulian.onofrei@yahoo.com>

Committed to 2020.02.x and 2020.05.x, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 2/2] package/nvidia-driver: fix typos in comments
  2020-08-30 21:26     ` [Buildroot] [PATCH 2/2] package/nvidia-driver: fix typos in comments Iulian Onofrei
  2020-08-31  6:43       ` Yann E. MORIN
@ 2020-09-01 19:36       ` Peter Korsgaard
  1 sibling, 0 replies; 8+ messages in thread
From: Peter Korsgaard @ 2020-09-01 19:36 UTC (permalink / raw)
  To: buildroot

>>>>> "Iulian" == Iulian Onofrei via buildroot <buildroot@busybox.net> writes:

 > Signed-off-by: Iulian Onofrei <iulian.onofrei@yahoo.com>

Committed to 2020.02.x and 2020.05.x, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2020-09-01 19:36 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20200830123610.20164-1-iulian.onofrei.ref@yahoo.com>
2020-08-30 12:36 ` [Buildroot] [PATCH] Fix typos Iulian Onofrei
2020-08-30 16:45   ` Arnout Vandecappelle
2020-08-30 21:26   ` [Buildroot] [PATCH 1/2] package/libeXosip2: fix typos in help text Iulian Onofrei
2020-08-30 21:26     ` [Buildroot] [PATCH 2/2] package/nvidia-driver: fix typos in comments Iulian Onofrei
2020-08-31  6:43       ` Yann E. MORIN
2020-09-01 19:36       ` Peter Korsgaard
2020-08-31  7:08     ` [Buildroot] [PATCH 1/2] package/libeXosip2: fix typos in help text Peter Korsgaard
2020-09-01 19:36     ` Peter Korsgaard

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.