public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH] boot: fix typo in SYS_BOOTM_LEN description
@ 2025-10-29 11:19 Quentin Schulz
  2025-10-29 20:12 ` Simon Glass
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Quentin Schulz @ 2025-10-29 11:19 UTC (permalink / raw)
  To: u-boot
  Cc: Tom Rini, Simon Glass, Mattijs Korpershoek, Marek Vasut,
	Michal Simek, Martin Schwan, Quentin Schulz

From: Quentin Schulz <quentin.schulz@cherry.de>

Signed-off-by: Quentin Schulz <quentin.schulz@cherry.de>
---
 boot/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/boot/Kconfig b/boot/Kconfig
index 9adb051400f..762bf4e2dee 100644
--- a/boot/Kconfig
+++ b/boot/Kconfig
@@ -1053,7 +1053,7 @@ if MEASURED_BOOT
 endif # MEASURED_BOOT
 
 config SYS_BOOTM_LEN
-	hex "Maximum size of a decompresed OS image"
+	hex "Maximum size of a decompressed OS image"
 	depends on CMD_BOOTM || CMD_BOOTI || CMD_BOOTZ || \
 		LEGACY_IMAGE_FORMAT || SPL_LEGACY_IMAGE_FORMAT
 	default 0x8000000 if PPC || ARM64 || RISCV

---
base-commit: 4cad9faf8d2887b8851f0ced5194ffbaa92ca71e
change-id: 20251029-sys-bootm-len-typo-65afe0aa772c

Best regards,
-- 
Quentin Schulz <quentin.schulz@cherry.de>


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

* Re: [PATCH] boot: fix typo in SYS_BOOTM_LEN description
  2025-10-29 11:19 [PATCH] boot: fix typo in SYS_BOOTM_LEN description Quentin Schulz
@ 2025-10-29 20:12 ` Simon Glass
  2025-10-31 15:13 ` Mattijs Korpershoek
  2025-11-07 14:17 ` Tom Rini
  2 siblings, 0 replies; 4+ messages in thread
From: Simon Glass @ 2025-10-29 20:12 UTC (permalink / raw)
  To: Quentin Schulz
  Cc: U-Boot Mailing List, Tom Rini, Mattijs Korpershoek, Marek Vasut,
	Michal Simek, Martin Schwan, Quentin Schulz

On Wed, 29 Oct 2025 at 12:19, Quentin Schulz <foss+uboot@0leil.net> wrote:
>
> From: Quentin Schulz <quentin.schulz@cherry.de>
>
> Signed-off-by: Quentin Schulz <quentin.schulz@cherry.de>
> ---
>  boot/Kconfig | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>

Reviewed-by: Simon Glass <sjg@chromium.org>

> diff --git a/boot/Kconfig b/boot/Kconfig
> index 9adb051400f..762bf4e2dee 100644
> --- a/boot/Kconfig
> +++ b/boot/Kconfig
> @@ -1053,7 +1053,7 @@ if MEASURED_BOOT
>  endif # MEASURED_BOOT
>
>  config SYS_BOOTM_LEN
> -       hex "Maximum size of a decompresed OS image"
> +       hex "Maximum size of a decompressed OS image"
>         depends on CMD_BOOTM || CMD_BOOTI || CMD_BOOTZ || \
>                 LEGACY_IMAGE_FORMAT || SPL_LEGACY_IMAGE_FORMAT
>         default 0x8000000 if PPC || ARM64 || RISCV
>
> ---
> base-commit: 4cad9faf8d2887b8851f0ced5194ffbaa92ca71e
> change-id: 20251029-sys-bootm-len-typo-65afe0aa772c
>
> Best regards,
> --
> Quentin Schulz <quentin.schulz@cherry.de>
>

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

* Re: [PATCH] boot: fix typo in SYS_BOOTM_LEN description
  2025-10-29 11:19 [PATCH] boot: fix typo in SYS_BOOTM_LEN description Quentin Schulz
  2025-10-29 20:12 ` Simon Glass
@ 2025-10-31 15:13 ` Mattijs Korpershoek
  2025-11-07 14:17 ` Tom Rini
  2 siblings, 0 replies; 4+ messages in thread
From: Mattijs Korpershoek @ 2025-10-31 15:13 UTC (permalink / raw)
  To: Quentin Schulz, u-boot
  Cc: Tom Rini, Simon Glass, Mattijs Korpershoek, Marek Vasut,
	Michal Simek, Martin Schwan, Quentin Schulz

Hi Quentin,

Thank you for the patch.

On Wed, Oct 29, 2025 at 12:19, Quentin Schulz <foss+uboot@0leil.net> wrote:

> From: Quentin Schulz <quentin.schulz@cherry.de>
>
> Signed-off-by: Quentin Schulz <quentin.schulz@cherry.de>

Reviewed-by: Mattijs Korpershoek <mkorpershoek@kernel.org>

> ---
>  boot/Kconfig | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/boot/Kconfig b/boot/Kconfig
> index 9adb051400f..762bf4e2dee 100644
> --- a/boot/Kconfig
> +++ b/boot/Kconfig
> @@ -1053,7 +1053,7 @@ if MEASURED_BOOT
>  endif # MEASURED_BOOT
>  
>  config SYS_BOOTM_LEN
> -	hex "Maximum size of a decompresed OS image"
> +	hex "Maximum size of a decompressed OS image"
>  	depends on CMD_BOOTM || CMD_BOOTI || CMD_BOOTZ || \
>  		LEGACY_IMAGE_FORMAT || SPL_LEGACY_IMAGE_FORMAT
>  	default 0x8000000 if PPC || ARM64 || RISCV
>
> ---
> base-commit: 4cad9faf8d2887b8851f0ced5194ffbaa92ca71e
> change-id: 20251029-sys-bootm-len-typo-65afe0aa772c
>
> Best regards,
> -- 
> Quentin Schulz <quentin.schulz@cherry.de>

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

* Re: [PATCH] boot: fix typo in SYS_BOOTM_LEN description
  2025-10-29 11:19 [PATCH] boot: fix typo in SYS_BOOTM_LEN description Quentin Schulz
  2025-10-29 20:12 ` Simon Glass
  2025-10-31 15:13 ` Mattijs Korpershoek
@ 2025-11-07 14:17 ` Tom Rini
  2 siblings, 0 replies; 4+ messages in thread
From: Tom Rini @ 2025-11-07 14:17 UTC (permalink / raw)
  To: u-boot, Quentin Schulz
  Cc: Simon Glass, Mattijs Korpershoek, Marek Vasut, Michal Simek,
	Martin Schwan, Quentin Schulz

On Wed, 29 Oct 2025 12:19:14 +0100, Quentin Schulz wrote:

> 


Applied to u-boot/master, thanks!

[1/1] boot: fix typo in SYS_BOOTM_LEN description
      commit: f05576620c54f7465a2dd0ff5c3d8d56744ef31c
-- 
Tom



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

end of thread, other threads:[~2025-11-07 14:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-29 11:19 [PATCH] boot: fix typo in SYS_BOOTM_LEN description Quentin Schulz
2025-10-29 20:12 ` Simon Glass
2025-10-31 15:13 ` Mattijs Korpershoek
2025-11-07 14:17 ` Tom Rini

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