mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH 0/2] Fix a few typos and duplicated words
@ 2024-04-09  7:37 Markus Heidelberg
  2024-04-09  7:37 ` [ptxdist] [PATCH 1/2] Fix typos "can/must be uses" -> "used" Markus Heidelberg
  2024-04-09  7:37 ` [ptxdist] [PATCH 2/2] Fix duplicated "to to" in texts Markus Heidelberg
  0 siblings, 2 replies; 7+ messages in thread
From: Markus Heidelberg @ 2024-04-09  7:37 UTC (permalink / raw)
  To: ptxdist; +Cc: Markus Heidelberg

Markus Heidelberg (2):
  Fix typos "can/must be uses" -> "used"
  Fix duplicated "to to" in texts

 doc/multi_image_platforms.inc | 6 +++---
 doc/ref_make_variables.rst    | 6 +++---
 platforms/image_ipkg.in       | 2 +-
 rules/other/Toplevel.make     | 2 +-
 4 files changed, 8 insertions(+), 8 deletions(-)

-- 
2.34.1




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

* [ptxdist] [PATCH 1/2] Fix typos "can/must be uses" -> "used"
  2024-04-09  7:37 [ptxdist] [PATCH 0/2] Fix a few typos and duplicated words Markus Heidelberg
@ 2024-04-09  7:37 ` Markus Heidelberg
  2024-04-09  8:45   ` Alexander Dahl
  2024-04-11 15:04   ` [ptxdist] [APPLIED] " Michael Olbrich
  2024-04-09  7:37 ` [ptxdist] [PATCH 2/2] Fix duplicated "to to" in texts Markus Heidelberg
  1 sibling, 2 replies; 7+ messages in thread
From: Markus Heidelberg @ 2024-04-09  7:37 UTC (permalink / raw)
  To: ptxdist; +Cc: Markus Heidelberg

Signed-off-by: Markus Heidelberg <m.heidelberg@cab.de>
---
 doc/multi_image_platforms.inc | 6 +++---
 doc/ref_make_variables.rst    | 6 +++---
 rules/other/Toplevel.make     | 2 +-
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/doc/multi_image_platforms.inc b/doc/multi_image_platforms.inc
index 2c8838f4e..726a42767 100644
--- a/doc/multi_image_platforms.inc
+++ b/doc/multi_image_platforms.inc
@@ -26,7 +26,7 @@ package rules manually. See :ref:`adding_new_packages` for more details one
 how to create a new package.
 
 .. note:: PTXdist looks in ``patches/$(<PKG>)`` for the patches. Symlinks
-  can be uses to share the patch stack across multiple bootloader packages.
+  can be used to share the patch stack across multiple bootloader packages.
 
 .. _multi_image_individual_root_filesystems:
 
@@ -46,7 +46,7 @@ There are two ways to mange the package list for the image:
    Manually create the package list by listing package names or using **make**
    macros to manipulate the default package list ``$(PTX_PACKAGES_INSTALL)``.
 
-   To add a single custom package, extra packages can be uses. An extra package
+   To add a single custom package, extra packages can be used. An extra package
    is not added to ``$(PTX_PACKAGES_INSTALL)``. It is created by modifying the
    package rule like this:
 
@@ -93,7 +93,7 @@ The final steps are highly hardware dependent. In some cases a bootloader
 image and a rootfs are all that is needed.
 
 To boot from SD-Card a disk image including bootloader, partition table and
-rootfs is needed. The ``image-genimage`` template can be uses again to
+rootfs is needed. The ``image-genimage`` template can be used again to
 create such an image for each variant.
 
 .. note:: The genimage config files in ``config/images/`` are good examples
diff --git a/doc/ref_make_variables.rst b/doc/ref_make_variables.rst
index 31616ac6f..6bba9db5d 100644
--- a/doc/ref_make_variables.rst
+++ b/doc/ref_make_variables.rst
@@ -478,7 +478,7 @@ different.
   package then this package should be selected in the menu file.
 
 ``<PKG>_PKGS``
-  This is another mechanism to add files to the image. It can be uses
+  This is another mechanism to add files to the image. It can be used
   instead of or in addition to ``<PKG>_FILES``. It must be set to a list of
   ptxdist packages (the lowercase name of the packages). PTXdist will add
   the necessary dependencies.
@@ -486,9 +486,9 @@ different.
   Note that this will not ensure that the packages are enabled or that all
   all package dependencies are satisfied. ``$(PTX_PACKAGES_INSTALL)`` can
   be used to specify all enabled packages. Or ``$(call ptx/collection,
-  $(PTXDIST_WORKSPACE)/configs/<collection-file-name>)`` can be uses to to
+  $(PTXDIST_WORKSPACE)/configs/<collection-file-name>)`` can be used to to
   specify the packages enabled by this collection. In both cases ``=`` must
-  be uses instead of ``:=`` due to the makefile include order.
+  be used instead of ``:=`` due to the makefile include order.
 
 ``<PKG>_CONFIG``
   ``genimage`` packages use this to specify the ``genimage`` configuration
diff --git a/rules/other/Toplevel.make b/rules/other/Toplevel.make
index f1a13d72f..ac2289431 100644
--- a/rules/other/Toplevel.make
+++ b/rules/other/Toplevel.make
@@ -203,7 +203,7 @@ endif
 #
 # Pattern target to allow printing variable
 # $(filter ..) is used to match against all existing variables so patterns
-# containing '%' can be uses to print multiple variables.
+# containing '%' can be used to print multiple variables.
 # In verbose mode, '<name>=<value>' is printed.
 # Trying to print undefined variables results in an error unless '-k' is
 # used. In this case an empty value is printed.
-- 
2.34.1




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

* [ptxdist] [PATCH 2/2] Fix duplicated "to to" in texts
  2024-04-09  7:37 [ptxdist] [PATCH 0/2] Fix a few typos and duplicated words Markus Heidelberg
  2024-04-09  7:37 ` [ptxdist] [PATCH 1/2] Fix typos "can/must be uses" -> "used" Markus Heidelberg
@ 2024-04-09  7:37 ` Markus Heidelberg
  2024-04-09  8:42   ` Alexander Dahl
  2024-04-11 15:04   ` [ptxdist] [APPLIED] " Michael Olbrich
  1 sibling, 2 replies; 7+ messages in thread
From: Markus Heidelberg @ 2024-04-09  7:37 UTC (permalink / raw)
  To: ptxdist; +Cc: Markus Heidelberg

Signed-off-by: Markus Heidelberg <m.heidelberg@cab.de>
---
 doc/ref_make_variables.rst | 2 +-
 platforms/image_ipkg.in    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/doc/ref_make_variables.rst b/doc/ref_make_variables.rst
index 6bba9db5d..775ff71be 100644
--- a/doc/ref_make_variables.rst
+++ b/doc/ref_make_variables.rst
@@ -486,7 +486,7 @@ different.
   Note that this will not ensure that the packages are enabled or that all
   all package dependencies are satisfied. ``$(PTX_PACKAGES_INSTALL)`` can
   be used to specify all enabled packages. Or ``$(call ptx/collection,
-  $(PTXDIST_WORKSPACE)/configs/<collection-file-name>)`` can be used to to
+  $(PTXDIST_WORKSPACE)/configs/<collection-file-name>)`` can be used to
   specify the packages enabled by this collection. In both cases ``=`` must
   be used instead of ``:=`` due to the makefile include order.
 
diff --git a/platforms/image_ipkg.in b/platforms/image_ipkg.in
index 106a3cb77..11ddaa9d1 100644
--- a/platforms/image_ipkg.in
+++ b/platforms/image_ipkg.in
@@ -30,7 +30,7 @@ menuconfig IMAGE_IPKG_SIGN_OPENSSL
 	select HOST_OPENSSL
 	prompt "sign ipkg-repository with openssl"
 	help
-	  Use openssl to to sign the Packages file in the package
+	  Use openssl to sign the Packages file in the package
 	  repository.
 
 
-- 
2.34.1




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

* Re: [ptxdist] [PATCH 2/2] Fix duplicated "to to" in texts
  2024-04-09  7:37 ` [ptxdist] [PATCH 2/2] Fix duplicated "to to" in texts Markus Heidelberg
@ 2024-04-09  8:42   ` Alexander Dahl
  2024-04-11 15:04   ` [ptxdist] [APPLIED] " Michael Olbrich
  1 sibling, 0 replies; 7+ messages in thread
From: Alexander Dahl @ 2024-04-09  8:42 UTC (permalink / raw)
  To: Markus Heidelberg; +Cc: ptxdist

Am Tue, Apr 09, 2024 at 09:37:45AM +0200 schrieb Markus Heidelberg:
> Signed-off-by: Markus Heidelberg <m.heidelberg@cab.de>
> ---
>  doc/ref_make_variables.rst | 2 +-
>  platforms/image_ipkg.in    | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/doc/ref_make_variables.rst b/doc/ref_make_variables.rst
> index 6bba9db5d..775ff71be 100644
> --- a/doc/ref_make_variables.rst
> +++ b/doc/ref_make_variables.rst
> @@ -486,7 +486,7 @@ different.
>    Note that this will not ensure that the packages are enabled or that all
>    all package dependencies are satisfied. ``$(PTX_PACKAGES_INSTALL)`` can
>    be used to specify all enabled packages. Or ``$(call ptx/collection,
> -  $(PTXDIST_WORKSPACE)/configs/<collection-file-name>)`` can be used to to
> +  $(PTXDIST_WORKSPACE)/configs/<collection-file-name>)`` can be used to
>    specify the packages enabled by this collection. In both cases ``=`` must
>    be used instead of ``:=`` due to the makefile include order.
>  
> diff --git a/platforms/image_ipkg.in b/platforms/image_ipkg.in
> index 106a3cb77..11ddaa9d1 100644
> --- a/platforms/image_ipkg.in
> +++ b/platforms/image_ipkg.in
> @@ -30,7 +30,7 @@ menuconfig IMAGE_IPKG_SIGN_OPENSSL
>  	select HOST_OPENSSL
>  	prompt "sign ipkg-repository with openssl"
>  	help
> -	  Use openssl to to sign the Packages file in the package
> +	  Use openssl to sign the Packages file in the package
>  	  repository.

Reviewed-by: Alexander Dahl <ada@thorsis.com>

Greets
Alex




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

* Re: [ptxdist] [PATCH 1/2] Fix typos "can/must be uses" -> "used"
  2024-04-09  7:37 ` [ptxdist] [PATCH 1/2] Fix typos "can/must be uses" -> "used" Markus Heidelberg
@ 2024-04-09  8:45   ` Alexander Dahl
  2024-04-11 15:04   ` [ptxdist] [APPLIED] " Michael Olbrich
  1 sibling, 0 replies; 7+ messages in thread
From: Alexander Dahl @ 2024-04-09  8:45 UTC (permalink / raw)
  To: Markus Heidelberg; +Cc: ptxdist

Hello Markus,

Am Tue, Apr 09, 2024 at 09:37:44AM +0200 schrieb Markus Heidelberg:
> Signed-off-by: Markus Heidelberg <m.heidelberg@cab.de>
> ---
>  doc/multi_image_platforms.inc | 6 +++---
>  doc/ref_make_variables.rst    | 6 +++---
>  rules/other/Toplevel.make     | 2 +-
>  3 files changed, 7 insertions(+), 7 deletions(-)
> 
> diff --git a/doc/multi_image_platforms.inc b/doc/multi_image_platforms.inc
> index 2c8838f4e..726a42767 100644
> --- a/doc/multi_image_platforms.inc
> +++ b/doc/multi_image_platforms.inc
> @@ -26,7 +26,7 @@ package rules manually. See :ref:`adding_new_packages` for more details one
>  how to create a new package.
>  
>  .. note:: PTXdist looks in ``patches/$(<PKG>)`` for the patches. Symlinks
> -  can be uses to share the patch stack across multiple bootloader packages.
> +  can be used to share the patch stack across multiple bootloader packages.
>  
>  .. _multi_image_individual_root_filesystems:
>  
> @@ -46,7 +46,7 @@ There are two ways to mange the package list for the image:
>     Manually create the package list by listing package names or using **make**
>     macros to manipulate the default package list ``$(PTX_PACKAGES_INSTALL)``.
>  
> -   To add a single custom package, extra packages can be uses. An extra package
> +   To add a single custom package, extra packages can be used. An extra package
>     is not added to ``$(PTX_PACKAGES_INSTALL)``. It is created by modifying the
>     package rule like this:
>  
> @@ -93,7 +93,7 @@ The final steps are highly hardware dependent. In some cases a bootloader
>  image and a rootfs are all that is needed.
>  
>  To boot from SD-Card a disk image including bootloader, partition table and
> -rootfs is needed. The ``image-genimage`` template can be uses again to
> +rootfs is needed. The ``image-genimage`` template can be used again to
>  create such an image for each variant.
>  
>  .. note:: The genimage config files in ``config/images/`` are good examples
> diff --git a/doc/ref_make_variables.rst b/doc/ref_make_variables.rst
> index 31616ac6f..6bba9db5d 100644
> --- a/doc/ref_make_variables.rst
> +++ b/doc/ref_make_variables.rst
> @@ -478,7 +478,7 @@ different.
>    package then this package should be selected in the menu file.
>  
>  ``<PKG>_PKGS``
> -  This is another mechanism to add files to the image. It can be uses
> +  This is another mechanism to add files to the image. It can be used
>    instead of or in addition to ``<PKG>_FILES``. It must be set to a list of
>    ptxdist packages (the lowercase name of the packages). PTXdist will add
>    the necessary dependencies.
> @@ -486,9 +486,9 @@ different.
>    Note that this will not ensure that the packages are enabled or that all
>    all package dependencies are satisfied. ``$(PTX_PACKAGES_INSTALL)`` can
>    be used to specify all enabled packages. Or ``$(call ptx/collection,
> -  $(PTXDIST_WORKSPACE)/configs/<collection-file-name>)`` can be uses to to
> +  $(PTXDIST_WORKSPACE)/configs/<collection-file-name>)`` can be used to to
>    specify the packages enabled by this collection. In both cases ``=`` must
> -  be uses instead of ``:=`` due to the makefile include order.
> +  be used instead of ``:=`` due to the makefile include order.
>  
>  ``<PKG>_CONFIG``
>    ``genimage`` packages use this to specify the ``genimage`` configuration
> diff --git a/rules/other/Toplevel.make b/rules/other/Toplevel.make
> index f1a13d72f..ac2289431 100644
> --- a/rules/other/Toplevel.make
> +++ b/rules/other/Toplevel.make
> @@ -203,7 +203,7 @@ endif
>  #
>  # Pattern target to allow printing variable
>  # $(filter ..) is used to match against all existing variables so patterns
> -# containing '%' can be uses to print multiple variables.
> +# containing '%' can be used to print multiple variables.
>  # In verbose mode, '<name>=<value>' is printed.
>  # Trying to print undefined variables results in an error unless '-k' is
>  # used. In this case an empty value is printed.

Reviewed-by: Alexander Dahl <ada@thorsis.com>

Greets
Alex




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

* Re: [ptxdist] [APPLIED] Fix typos "can/must be uses" -> "used"
  2024-04-09  7:37 ` [ptxdist] [PATCH 1/2] Fix typos "can/must be uses" -> "used" Markus Heidelberg
  2024-04-09  8:45   ` Alexander Dahl
@ 2024-04-11 15:04   ` Michael Olbrich
  1 sibling, 0 replies; 7+ messages in thread
From: Michael Olbrich @ 2024-04-11 15:04 UTC (permalink / raw)
  To: ptxdist; +Cc: Markus Heidelberg

Thanks, applied as 4afd6a07eaae49b0cf9e8c1681140fb38eb0cabe.

Michael

[sent from post-receive hook]

On Thu, 11 Apr 2024 17:04:55 +0200, Markus Heidelberg <m.heidelberg@cab.de> wrote:
> Signed-off-by: Markus Heidelberg <m.heidelberg@cab.de>
> Reviewed-by: Alexander Dahl <ada@thorsis.com>
> Message-Id: <20240409073745.1549906-2-m.heidelberg@cab.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/doc/multi_image_platforms.inc b/doc/multi_image_platforms.inc
> index 2c8838f4eca5..726a4276740c 100644
> --- a/doc/multi_image_platforms.inc
> +++ b/doc/multi_image_platforms.inc
> @@ -26,7 +26,7 @@ package rules manually. See :ref:`adding_new_packages` for more details one
>  how to create a new package.
>  
>  .. note:: PTXdist looks in ``patches/$(<PKG>)`` for the patches. Symlinks
> -  can be uses to share the patch stack across multiple bootloader packages.
> +  can be used to share the patch stack across multiple bootloader packages.
>  
>  .. _multi_image_individual_root_filesystems:
>  
> @@ -46,7 +46,7 @@ There are two ways to mange the package list for the image:
>     Manually create the package list by listing package names or using **make**
>     macros to manipulate the default package list ``$(PTX_PACKAGES_INSTALL)``.
>  
> -   To add a single custom package, extra packages can be uses. An extra package
> +   To add a single custom package, extra packages can be used. An extra package
>     is not added to ``$(PTX_PACKAGES_INSTALL)``. It is created by modifying the
>     package rule like this:
>  
> @@ -93,7 +93,7 @@ The final steps are highly hardware dependent. In some cases a bootloader
>  image and a rootfs are all that is needed.
>  
>  To boot from SD-Card a disk image including bootloader, partition table and
> -rootfs is needed. The ``image-genimage`` template can be uses again to
> +rootfs is needed. The ``image-genimage`` template can be used again to
>  create such an image for each variant.
>  
>  .. note:: The genimage config files in ``config/images/`` are good examples
> diff --git a/doc/ref_make_variables.rst b/doc/ref_make_variables.rst
> index 31616ac6f349..6bba9db5d773 100644
> --- a/doc/ref_make_variables.rst
> +++ b/doc/ref_make_variables.rst
> @@ -478,7 +478,7 @@ different.
>    package then this package should be selected in the menu file.
>  
>  ``<PKG>_PKGS``
> -  This is another mechanism to add files to the image. It can be uses
> +  This is another mechanism to add files to the image. It can be used
>    instead of or in addition to ``<PKG>_FILES``. It must be set to a list of
>    ptxdist packages (the lowercase name of the packages). PTXdist will add
>    the necessary dependencies.
> @@ -486,9 +486,9 @@ different.
>    Note that this will not ensure that the packages are enabled or that all
>    all package dependencies are satisfied. ``$(PTX_PACKAGES_INSTALL)`` can
>    be used to specify all enabled packages. Or ``$(call ptx/collection,
> -  $(PTXDIST_WORKSPACE)/configs/<collection-file-name>)`` can be uses to to
> +  $(PTXDIST_WORKSPACE)/configs/<collection-file-name>)`` can be used to to
>    specify the packages enabled by this collection. In both cases ``=`` must
> -  be uses instead of ``:=`` due to the makefile include order.
> +  be used instead of ``:=`` due to the makefile include order.
>  
>  ``<PKG>_CONFIG``
>    ``genimage`` packages use this to specify the ``genimage`` configuration
> diff --git a/rules/other/Toplevel.make b/rules/other/Toplevel.make
> index f1a13d72f9b8..ac2289431ea9 100644
> --- a/rules/other/Toplevel.make
> +++ b/rules/other/Toplevel.make
> @@ -203,7 +203,7 @@ endif
>  #
>  # Pattern target to allow printing variable
>  # $(filter ..) is used to match against all existing variables so patterns
> -# containing '%' can be uses to print multiple variables.
> +# containing '%' can be used to print multiple variables.
>  # In verbose mode, '<name>=<value>' is printed.
>  # Trying to print undefined variables results in an error unless '-k' is
>  # used. In this case an empty value is printed.



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

* Re: [ptxdist] [APPLIED] Fix duplicated "to to" in texts
  2024-04-09  7:37 ` [ptxdist] [PATCH 2/2] Fix duplicated "to to" in texts Markus Heidelberg
  2024-04-09  8:42   ` Alexander Dahl
@ 2024-04-11 15:04   ` Michael Olbrich
  1 sibling, 0 replies; 7+ messages in thread
From: Michael Olbrich @ 2024-04-11 15:04 UTC (permalink / raw)
  To: ptxdist; +Cc: Markus Heidelberg

Thanks, applied as 7b26087bb4521871942476f077598bedc17bf29e.

Michael

[sent from post-receive hook]

On Thu, 11 Apr 2024 17:04:56 +0200, Markus Heidelberg <m.heidelberg@cab.de> wrote:
> Signed-off-by: Markus Heidelberg <m.heidelberg@cab.de>
> Reviewed-by: Alexander Dahl <ada@thorsis.com>
> Message-Id: <20240409073745.1549906-3-m.heidelberg@cab.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/doc/ref_make_variables.rst b/doc/ref_make_variables.rst
> index 6bba9db5d773..775ff71be64f 100644
> --- a/doc/ref_make_variables.rst
> +++ b/doc/ref_make_variables.rst
> @@ -486,7 +486,7 @@ different.
>    Note that this will not ensure that the packages are enabled or that all
>    all package dependencies are satisfied. ``$(PTX_PACKAGES_INSTALL)`` can
>    be used to specify all enabled packages. Or ``$(call ptx/collection,
> -  $(PTXDIST_WORKSPACE)/configs/<collection-file-name>)`` can be used to to
> +  $(PTXDIST_WORKSPACE)/configs/<collection-file-name>)`` can be used to
>    specify the packages enabled by this collection. In both cases ``=`` must
>    be used instead of ``:=`` due to the makefile include order.
>  
> diff --git a/platforms/image_ipkg.in b/platforms/image_ipkg.in
> index 106a3cb77d97..11ddaa9d1e35 100644
> --- a/platforms/image_ipkg.in
> +++ b/platforms/image_ipkg.in
> @@ -30,7 +30,7 @@ menuconfig IMAGE_IPKG_SIGN_OPENSSL
>  	select HOST_OPENSSL
>  	prompt "sign ipkg-repository with openssl"
>  	help
> -	  Use openssl to to sign the Packages file in the package
> +	  Use openssl to sign the Packages file in the package
>  	  repository.
>  
>  



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

end of thread, other threads:[~2024-04-11 15:05 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-09  7:37 [ptxdist] [PATCH 0/2] Fix a few typos and duplicated words Markus Heidelberg
2024-04-09  7:37 ` [ptxdist] [PATCH 1/2] Fix typos "can/must be uses" -> "used" Markus Heidelberg
2024-04-09  8:45   ` Alexander Dahl
2024-04-11 15:04   ` [ptxdist] [APPLIED] " Michael Olbrich
2024-04-09  7:37 ` [ptxdist] [PATCH 2/2] Fix duplicated "to to" in texts Markus Heidelberg
2024-04-09  8:42   ` Alexander Dahl
2024-04-11 15:04   ` [ptxdist] [APPLIED] " Michael Olbrich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox