From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Thu, 11 Apr 2024 17:05:28 +0200 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1ruvzU-007n7h-0J for lore@lore.pengutronix.de; Thu, 11 Apr 2024 17:05:28 +0200 Received: from localhost ([127.0.0.1] helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1ruvzT-0004qY-Qq; Thu, 11 Apr 2024 17:05:27 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1ruvyy-0004Az-AG; Thu, 11 Apr 2024 17:04:56 +0200 Received: from [2a0a:edc0:0:1101:1d::54] (helo=dude05.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1ruvyx-00BiBq-OZ; Thu, 11 Apr 2024 17:04:55 +0200 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.96) (envelope-from ) id 1ruvyx-005IQg-2K; Thu, 11 Apr 2024 17:04:55 +0200 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Thu, 11 Apr 2024 17:04:55 +0200 Message-Id: <20240411150455.1262475-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20240409073745.1549906-2-m.heidelberg@cab.de> References: <20240409073745.1549906-2-m.heidelberg@cab.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] Fix typos "can/must be uses" -> "used" X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: Markus Heidelberg Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false Thanks, applied as 4afd6a07eaae49b0cf9e8c1681140fb38eb0cabe. Michael [sent from post-receive hook] On Thu, 11 Apr 2024 17:04:55 +0200, Markus Heidelberg wrote: > Signed-off-by: Markus Heidelberg > Reviewed-by: Alexander Dahl > Message-Id: <20240409073745.1549906-2-m.heidelberg@cab.de> > Signed-off-by: Michael Olbrich > > 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/$()`` 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. > > ``_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 ``_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/)`` can be uses to to > + $(PTXDIST_WORKSPACE)/configs/)`` 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. > > ``_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, '=' is printed. > # Trying to print undefined variables results in an error unless '-k' is > # used. In this case an empty value is printed.