All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] boot: image-pre-load: drop unused CONFIG_SYS_BOOTM_LEN
@ 2022-05-07 13:23 Peng Fan (OSS)
  2022-05-08 15:30 ` Tom Rini
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Peng Fan (OSS) @ 2022-05-07 13:23 UTC (permalink / raw)
  To: u-boot, trini; +Cc: Peng Fan

From: Peng Fan <peng.fan@nxp.com>

CONFIG_SYS_BOOTM_LEN is not used in this file, drop it.

Signed-off-by: Peng Fan <peng.fan@nxp.com>
---
 boot/image-pre-load.c | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/boot/image-pre-load.c b/boot/image-pre-load.c
index 78d89069a98..5ab9ae18746 100644
--- a/boot/image-pre-load.c
+++ b/boot/image-pre-load.c
@@ -23,11 +23,6 @@ DECLARE_GLOBAL_DATA_PTR;
 #define IMAGE_PRE_LOAD_PROP_PUBLIC_KEY		"public-key"
 #define IMAGE_PRE_LOAD_PROP_MANDATORY		"mandatory"
 
-#ifndef CONFIG_SYS_BOOTM_LEN
-/* use 8MByte as default max gunzip size */
-#define CONFIG_SYS_BOOTM_LEN	0x800000
-#endif
-
 /*
  * Information in the device-tree about the signature in the header
  */
-- 
2.36.0


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

* Re: [PATCH] boot: image-pre-load: drop unused CONFIG_SYS_BOOTM_LEN
  2022-05-07 13:23 [PATCH] boot: image-pre-load: drop unused CONFIG_SYS_BOOTM_LEN Peng Fan (OSS)
@ 2022-05-08 15:30 ` Tom Rini
  2022-06-03  6:44 ` Peng Fan
  2022-06-07 16:45 ` Tom Rini
  2 siblings, 0 replies; 5+ messages in thread
From: Tom Rini @ 2022-05-08 15:30 UTC (permalink / raw)
  To: Peng Fan (OSS); +Cc: u-boot, Peng Fan

[-- Attachment #1: Type: text/plain, Size: 275 bytes --]

On Sat, May 07, 2022 at 09:23:05PM +0800, Peng Fan (OSS) wrote:

> From: Peng Fan <peng.fan@nxp.com>
> 
> CONFIG_SYS_BOOTM_LEN is not used in this file, drop it.
> 
> Signed-off-by: Peng Fan <peng.fan@nxp.com>

Reviewed-by: Tom Rini <trini@konsulko.com>

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

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

* RE: [PATCH] boot: image-pre-load: drop unused CONFIG_SYS_BOOTM_LEN
  2022-05-07 13:23 [PATCH] boot: image-pre-load: drop unused CONFIG_SYS_BOOTM_LEN Peng Fan (OSS)
  2022-05-08 15:30 ` Tom Rini
@ 2022-06-03  6:44 ` Peng Fan
  2022-06-03 13:21   ` Tom Rini
  2022-06-07 16:45 ` Tom Rini
  2 siblings, 1 reply; 5+ messages in thread
From: Peng Fan @ 2022-06-03  6:44 UTC (permalink / raw)
  To: Peng Fan (OSS), u-boot, trini

Tom,

> Subject: [PATCH] boot: image-pre-load: drop unused CONFIG_SYS_BOOTM_LEN

You gave an R-b, but still not pick this up?

Thanks,
Peng.

> 
> From: Peng Fan <peng.fan@nxp.com>
> 
> CONFIG_SYS_BOOTM_LEN is not used in this file, drop it.
> 
> Signed-off-by: Peng Fan <peng.fan@nxp.com>
> ---
>  boot/image-pre-load.c | 5 -----
>  1 file changed, 5 deletions(-)
> 
> diff --git a/boot/image-pre-load.c b/boot/image-pre-load.c index
> 78d89069a98..5ab9ae18746 100644
> --- a/boot/image-pre-load.c
> +++ b/boot/image-pre-load.c
> @@ -23,11 +23,6 @@ DECLARE_GLOBAL_DATA_PTR;
>  #define IMAGE_PRE_LOAD_PROP_PUBLIC_KEY		"public-key"
>  #define IMAGE_PRE_LOAD_PROP_MANDATORY		"mandatory"
> 
> -#ifndef CONFIG_SYS_BOOTM_LEN
> -/* use 8MByte as default max gunzip size */
> -#define CONFIG_SYS_BOOTM_LEN	0x800000
> -#endif
> -
>  /*
>   * Information in the device-tree about the signature in the header
>   */
> --
> 2.36.0


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

* Re: [PATCH] boot: image-pre-load: drop unused CONFIG_SYS_BOOTM_LEN
  2022-06-03  6:44 ` Peng Fan
@ 2022-06-03 13:21   ` Tom Rini
  0 siblings, 0 replies; 5+ messages in thread
From: Tom Rini @ 2022-06-03 13:21 UTC (permalink / raw)
  To: Peng Fan; +Cc: Peng Fan (OSS), u-boot

[-- Attachment #1: Type: text/plain, Size: 306 bytes --]

On Fri, Jun 03, 2022 at 06:44:56AM +0000, Peng Fan wrote:
> Tom,
> 
> > Subject: [PATCH] boot: image-pre-load: drop unused CONFIG_SYS_BOOTM_LEN
> 
> You gave an R-b, but still not pick this up?

It's not breaking anything is it?  I'll grab it to -next when that opens
next week if so.

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

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

* Re: [PATCH] boot: image-pre-load: drop unused CONFIG_SYS_BOOTM_LEN
  2022-05-07 13:23 [PATCH] boot: image-pre-load: drop unused CONFIG_SYS_BOOTM_LEN Peng Fan (OSS)
  2022-05-08 15:30 ` Tom Rini
  2022-06-03  6:44 ` Peng Fan
@ 2022-06-07 16:45 ` Tom Rini
  2 siblings, 0 replies; 5+ messages in thread
From: Tom Rini @ 2022-06-07 16:45 UTC (permalink / raw)
  To: Peng Fan (OSS); +Cc: u-boot, Peng Fan

[-- Attachment #1: Type: text/plain, Size: 310 bytes --]

On Sat, May 07, 2022 at 09:23:05PM +0800, Peng Fan (OSS) wrote:

> From: Peng Fan <peng.fan@nxp.com>
> 
> CONFIG_SYS_BOOTM_LEN is not used in this file, drop it.
> 
> Signed-off-by: Peng Fan <peng.fan@nxp.com>
> Reviewed-by: Tom Rini <trini@konsulko.com>

Applied to u-boot/next, thanks!

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

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

end of thread, other threads:[~2022-06-07 16:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-07 13:23 [PATCH] boot: image-pre-load: drop unused CONFIG_SYS_BOOTM_LEN Peng Fan (OSS)
2022-05-08 15:30 ` Tom Rini
2022-06-03  6:44 ` Peng Fan
2022-06-03 13:21   ` Tom Rini
2022-06-07 16:45 ` Tom Rini

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.