mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH 1/2] common: Kconfig: fix typos
@ 2021-10-12  8:39 Ulrich Ölmann
  2021-10-12  8:39 ` [PATCH 2/2] common: Kconfig: fix indentation Ulrich Ölmann
  2021-10-12  8:44 ` [PATCH 1/2] common: Kconfig: fix typos Sascha Hauer
  0 siblings, 2 replies; 3+ messages in thread
From: Ulrich Ölmann @ 2021-10-12  8:39 UTC (permalink / raw)
  To: Barebox List

Signed-off-by: Ulrich Ölmann <u.oelmann@pengutronix.de>
---
 common/Kconfig | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/common/Kconfig b/common/Kconfig
index 4239ddfb19e0..d8d20917aab6 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -10,7 +10,7 @@ config HAS_MODULES
 config HAS_CACHE
 	bool
 	help
-	  This allows you do run "make ARCH=sandbox allyesconfig".
+	  This allows you to run "make ARCH=sandbox allyesconfig".
 
 	  Drivers that depend on a cache implementation can depend on this
 	  config, so that you don't get a compilation error.
@@ -18,7 +18,7 @@ config HAS_CACHE
 config HAS_DMA
 	bool
 	help
-	  This allows you do run "make ARCH=sandbox allyesconfig".
+	  This allows you to run "make ARCH=sandbox allyesconfig".
 
 	  Drivers that depend on a DMA implementation can depend on this
 	  config, so that you don't get a compilation error.
@@ -630,7 +630,7 @@ config BOOTM_FITIMAGE
 	select FITIMAGE
 	depends on BOOTM && ARM
 	help
-	  Support using Flattened Image Tree (FIT) Images. FIT is an image
+	  Support using Flattened Image Tree (FIT) images. FIT is an image
 	  format introduced by U-Boot. A FIT image contains one or multiple
 	  kernels, device trees and initrds. The FIT image itself is a flattened
 	  device tree binary. Have a look at the u-boot source tree
@@ -711,7 +711,7 @@ config MMCBLKDEV_ROOTARG
 	  variable is set or the used blspec entry contains 'linux-appendroot'.
 
 	  Note: It is crucial that the kernel device tree and the barebox device
-	  tree uses the same mmc aliases.
+	  tree use the same mmc aliases.
 
 	  [1] fa2d0aa96941 ("mmc: core: Allow setting slot index via device tree
 	      alias")
@@ -968,7 +968,7 @@ config DEFAULT_ENVIRONMENT_GENERIC_NEW_IKCONFIG
 	depends on DEFAULT_ENVIRONMENT_GENERIC_NEW
 	help
 	  This option embeds the used barebox Kconfig .config file into the
-	  environment as /env/data/config. This will increases barebox image
+	  environment as /env/data/config. This will increase barebox' image
 	  size. If unsure, say n here.
 
 config DEFAULT_ENVIRONMENT_PATH
@@ -1010,7 +1010,7 @@ config STATE_CRYPTO
 	select DIGEST
 	select DIGEST_HMAC_GENERIC
 	help
-	  This options enables HMAC based authentication support for
+	  This option enables HMAC based authentication support for
 	  the state's header and data. This means the state framework
 	  can verify both the data integrity and the authentication of
 	  the state's header and data.
@@ -1084,8 +1084,8 @@ config EXTERNAL_DTS_FRAGMENTS
 	  the dtc include search path.
 
 	  A preprocessor macro based on the name of the main dts will be
-	  defined, which allows the dts fragments to based on which image of a
-	  multi image build they are being used in. Given the dts filename
+	  defined, which allows the dts fragments to be based on which image of
+	  a multi image build they are being used in. Given the dts filename
 	  used for a board is "foo-board.dts" the external dts usage can be
 	  limited to that board with
 
@@ -1093,9 +1093,9 @@ config EXTERNAL_DTS_FRAGMENTS
 	  ...
 	  #endif
 
-	  It not intended that this be put into into Barebox defconfig files.
-	  Instead, it's an external build system, like Yocto or buildroot, to
-	  add dts fragments from outside the Barebox source tree into the
+	  It is not intended that this is put into Barebox' defconfig files.
+	  Instead, it's an external build system's job, like Yocto or buildroot,
+	  to add dts fragments from outside the Barebox source tree into the
 	  Barebox build.
 
 menu "OP-TEE loading"
@@ -1127,7 +1127,7 @@ config PBL_OPTEE
 	depends on !THUMB2_BAREBOX
 	help
 	  Allows starting OP-TEE during lowlevel initialization of the PBL.
-	  Requires explicit support in the boards lowlevel file.
+	  Requires explicit support in the board's lowlevel file.
 
 endmenu
 
@@ -1510,7 +1510,7 @@ config PBL_BREAK
 	bool "Execute software break on pbl start"
 	depends on ARM && (!CPU_32v4T && !ARCH_TEGRA)
 	help
-	  If this enabled, barebox will be compiled with BKPT instruction
+	  If enabled, barebox will be compiled with BKPT instruction
 	  on early pbl init. This option should be used only with JTAG debugger!
 
 source "lib/Kconfig.ubsan"
-- 
2.30.2


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* [PATCH 2/2] common: Kconfig: fix indentation
  2021-10-12  8:39 [PATCH 1/2] common: Kconfig: fix typos Ulrich Ölmann
@ 2021-10-12  8:39 ` Ulrich Ölmann
  2021-10-12  8:44 ` [PATCH 1/2] common: Kconfig: fix typos Sascha Hauer
  1 sibling, 0 replies; 3+ messages in thread
From: Ulrich Ölmann @ 2021-10-12  8:39 UTC (permalink / raw)
  To: Barebox List

Signed-off-by: Ulrich Ölmann <u.oelmann@pengutronix.de>
---
 common/Kconfig | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/common/Kconfig b/common/Kconfig
index d8d20917aab6..f4120b2083ee 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -992,9 +992,9 @@ config BTHREAD
 	select HAS_SCHED
 	depends on HAS_ARCH_SJLJ
 	help
-	 barebox threads are lightweight cooperative (green) threads that are
-	 scheduled within delay loops and the console idle to asynchronously
-	 execute actions, like checking for link up or feeding a watchdog.
+	  barebox threads are lightweight cooperative (green) threads that are
+	  scheduled within delay loops and the console idle to asynchronously
+	  execute actions, like checking for link up or feeding a watchdog.
 
 config STATE
 	bool "generic state infrastructure"
-- 
2.30.2


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* Re: [PATCH 1/2] common: Kconfig: fix typos
  2021-10-12  8:39 [PATCH 1/2] common: Kconfig: fix typos Ulrich Ölmann
  2021-10-12  8:39 ` [PATCH 2/2] common: Kconfig: fix indentation Ulrich Ölmann
@ 2021-10-12  8:44 ` Sascha Hauer
  1 sibling, 0 replies; 3+ messages in thread
From: Sascha Hauer @ 2021-10-12  8:44 UTC (permalink / raw)
  To: Ulrich Ölmann; +Cc: Barebox List

On Tue, Oct 12, 2021 at 10:39:19AM +0200, Ulrich Ölmann wrote:
> Signed-off-by: Ulrich Ölmann <u.oelmann@pengutronix.de>
> ---
>  common/Kconfig | 26 +++++++++++++-------------
>  1 file changed, 13 insertions(+), 13 deletions(-)

Applied, thanks

Sascha

> 
> diff --git a/common/Kconfig b/common/Kconfig
> index 4239ddfb19e0..d8d20917aab6 100644
> --- a/common/Kconfig
> +++ b/common/Kconfig
> @@ -10,7 +10,7 @@ config HAS_MODULES
>  config HAS_CACHE
>  	bool
>  	help
> -	  This allows you do run "make ARCH=sandbox allyesconfig".
> +	  This allows you to run "make ARCH=sandbox allyesconfig".
>  
>  	  Drivers that depend on a cache implementation can depend on this
>  	  config, so that you don't get a compilation error.
> @@ -18,7 +18,7 @@ config HAS_CACHE
>  config HAS_DMA
>  	bool
>  	help
> -	  This allows you do run "make ARCH=sandbox allyesconfig".
> +	  This allows you to run "make ARCH=sandbox allyesconfig".
>  
>  	  Drivers that depend on a DMA implementation can depend on this
>  	  config, so that you don't get a compilation error.
> @@ -630,7 +630,7 @@ config BOOTM_FITIMAGE
>  	select FITIMAGE
>  	depends on BOOTM && ARM
>  	help
> -	  Support using Flattened Image Tree (FIT) Images. FIT is an image
> +	  Support using Flattened Image Tree (FIT) images. FIT is an image
>  	  format introduced by U-Boot. A FIT image contains one or multiple
>  	  kernels, device trees and initrds. The FIT image itself is a flattened
>  	  device tree binary. Have a look at the u-boot source tree
> @@ -711,7 +711,7 @@ config MMCBLKDEV_ROOTARG
>  	  variable is set or the used blspec entry contains 'linux-appendroot'.
>  
>  	  Note: It is crucial that the kernel device tree and the barebox device
> -	  tree uses the same mmc aliases.
> +	  tree use the same mmc aliases.
>  
>  	  [1] fa2d0aa96941 ("mmc: core: Allow setting slot index via device tree
>  	      alias")
> @@ -968,7 +968,7 @@ config DEFAULT_ENVIRONMENT_GENERIC_NEW_IKCONFIG
>  	depends on DEFAULT_ENVIRONMENT_GENERIC_NEW
>  	help
>  	  This option embeds the used barebox Kconfig .config file into the
> -	  environment as /env/data/config. This will increases barebox image
> +	  environment as /env/data/config. This will increase barebox' image
>  	  size. If unsure, say n here.
>  
>  config DEFAULT_ENVIRONMENT_PATH
> @@ -1010,7 +1010,7 @@ config STATE_CRYPTO
>  	select DIGEST
>  	select DIGEST_HMAC_GENERIC
>  	help
> -	  This options enables HMAC based authentication support for
> +	  This option enables HMAC based authentication support for
>  	  the state's header and data. This means the state framework
>  	  can verify both the data integrity and the authentication of
>  	  the state's header and data.
> @@ -1084,8 +1084,8 @@ config EXTERNAL_DTS_FRAGMENTS
>  	  the dtc include search path.
>  
>  	  A preprocessor macro based on the name of the main dts will be
> -	  defined, which allows the dts fragments to based on which image of a
> -	  multi image build they are being used in. Given the dts filename
> +	  defined, which allows the dts fragments to be based on which image of
> +	  a multi image build they are being used in. Given the dts filename
>  	  used for a board is "foo-board.dts" the external dts usage can be
>  	  limited to that board with
>  
> @@ -1093,9 +1093,9 @@ config EXTERNAL_DTS_FRAGMENTS
>  	  ...
>  	  #endif
>  
> -	  It not intended that this be put into into Barebox defconfig files.
> -	  Instead, it's an external build system, like Yocto or buildroot, to
> -	  add dts fragments from outside the Barebox source tree into the
> +	  It is not intended that this is put into Barebox' defconfig files.
> +	  Instead, it's an external build system's job, like Yocto or buildroot,
> +	  to add dts fragments from outside the Barebox source tree into the
>  	  Barebox build.
>  
>  menu "OP-TEE loading"
> @@ -1127,7 +1127,7 @@ config PBL_OPTEE
>  	depends on !THUMB2_BAREBOX
>  	help
>  	  Allows starting OP-TEE during lowlevel initialization of the PBL.
> -	  Requires explicit support in the boards lowlevel file.
> +	  Requires explicit support in the board's lowlevel file.
>  
>  endmenu
>  
> @@ -1510,7 +1510,7 @@ config PBL_BREAK
>  	bool "Execute software break on pbl start"
>  	depends on ARM && (!CPU_32v4T && !ARCH_TEGRA)
>  	help
> -	  If this enabled, barebox will be compiled with BKPT instruction
> +	  If enabled, barebox will be compiled with BKPT instruction
>  	  on early pbl init. This option should be used only with JTAG debugger!
>  
>  source "lib/Kconfig.ubsan"
> -- 
> 2.30.2
> 
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox

-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox


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

end of thread, other threads:[~2021-10-12  8:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-12  8:39 [PATCH 1/2] common: Kconfig: fix typos Ulrich Ölmann
2021-10-12  8:39 ` [PATCH 2/2] common: Kconfig: fix indentation Ulrich Ölmann
2021-10-12  8:44 ` [PATCH 1/2] common: Kconfig: fix typos Sascha Hauer

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