public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH] Makefile: Add missing CONFIG_BOARD_SIZE_LIMIT check for u-boot-spl.kwb
@ 2022-09-14 13:06 Pali Rohár
  2022-09-16 16:02 ` Marek Behún
  2022-09-19  7:02 ` Stefan Roese
  0 siblings, 2 replies; 4+ messages in thread
From: Pali Rohár @ 2022-09-14 13:06 UTC (permalink / raw)
  To: Stefan Roese, Marek Behún; +Cc: u-boot

Currently CONFIG_BOARD_SIZE_LIMIT check is ignored for u-boot-spl.kwb
target. Fix it by adding missing $(BOARD_SIZE_CHECK) macro.

Signed-off-by: Pali Rohár <pali@kernel.org>
---
 Makefile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Makefile b/Makefile
index 65aca6e3e79b..3818107b2cbb 100644
--- a/Makefile
+++ b/Makefile
@@ -1472,6 +1472,7 @@ endif
 
 u-boot-spl.kwb: u-boot.bin spl/u-boot-spl.bin FORCE
 	$(call if_changed,mkimage)
+	$(BOARD_SIZE_CHECK)
 
 u-boot.sha1:	u-boot.bin
 		tools/ubsha1 u-boot.bin
-- 
2.20.1


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

* Re: [PATCH] Makefile: Add missing CONFIG_BOARD_SIZE_LIMIT check for u-boot-spl.kwb
  2022-09-14 13:06 [PATCH] Makefile: Add missing CONFIG_BOARD_SIZE_LIMIT check for u-boot-spl.kwb Pali Rohár
@ 2022-09-16 16:02 ` Marek Behún
  2022-09-19  7:02 ` Stefan Roese
  1 sibling, 0 replies; 4+ messages in thread
From: Marek Behún @ 2022-09-16 16:02 UTC (permalink / raw)
  To: Pali Rohár; +Cc: Stefan Roese, u-boot

On Wed, 14 Sep 2022 15:06:14 +0200
Pali Rohár <pali@kernel.org> wrote:

> Currently CONFIG_BOARD_SIZE_LIMIT check is ignored for u-boot-spl.kwb
> target. Fix it by adding missing $(BOARD_SIZE_CHECK) macro.
> 
> Signed-off-by: Pali Rohár <pali@kernel.org>
> ---
>  Makefile | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/Makefile b/Makefile
> index 65aca6e3e79b..3818107b2cbb 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -1472,6 +1472,7 @@ endif
>  
>  u-boot-spl.kwb: u-boot.bin spl/u-boot-spl.bin FORCE
>  	$(call if_changed,mkimage)
> +	$(BOARD_SIZE_CHECK)
>  
>  u-boot.sha1:	u-boot.bin
>  		tools/ubsha1 u-boot.bin

Reviewed-by: Marek Behún <kabel@kernel.org>

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

* Re: [PATCH] Makefile: Add missing CONFIG_BOARD_SIZE_LIMIT check for u-boot-spl.kwb
  2022-09-14 13:06 [PATCH] Makefile: Add missing CONFIG_BOARD_SIZE_LIMIT check for u-boot-spl.kwb Pali Rohár
  2022-09-16 16:02 ` Marek Behún
@ 2022-09-19  7:02 ` Stefan Roese
  2022-09-20  6:57   ` Stefan Roese
  1 sibling, 1 reply; 4+ messages in thread
From: Stefan Roese @ 2022-09-19  7:02 UTC (permalink / raw)
  To: Pali Rohár, Marek Behún; +Cc: u-boot

On 14.09.22 15:06, Pali Rohár wrote:
> Currently CONFIG_BOARD_SIZE_LIMIT check is ignored for u-boot-spl.kwb
> target. Fix it by adding missing $(BOARD_SIZE_CHECK) macro.
> 
> Signed-off-by: Pali Rohár <pali@kernel.org>

Reviewed-by: Stefan Roese <sr@denx.de>

Thanks,
Stefan

> ---
>   Makefile | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/Makefile b/Makefile
> index 65aca6e3e79b..3818107b2cbb 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -1472,6 +1472,7 @@ endif
>   
>   u-boot-spl.kwb: u-boot.bin spl/u-boot-spl.bin FORCE
>   	$(call if_changed,mkimage)
> +	$(BOARD_SIZE_CHECK)
>   
>   u-boot.sha1:	u-boot.bin
>   		tools/ubsha1 u-boot.bin

Viele Grüße,
Stefan Roese

-- 
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-51 Fax: (+49)-8142-66989-80 Email: sr@denx.de

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

* Re: [PATCH] Makefile: Add missing CONFIG_BOARD_SIZE_LIMIT check for u-boot-spl.kwb
  2022-09-19  7:02 ` Stefan Roese
@ 2022-09-20  6:57   ` Stefan Roese
  0 siblings, 0 replies; 4+ messages in thread
From: Stefan Roese @ 2022-09-20  6:57 UTC (permalink / raw)
  To: Pali Rohár, Marek Behún; +Cc: u-boot

On 19.09.22 09:02, Stefan Roese wrote:
> On 14.09.22 15:06, Pali Rohár wrote:
>> Currently CONFIG_BOARD_SIZE_LIMIT check is ignored for u-boot-spl.kwb
>> target. Fix it by adding missing $(BOARD_SIZE_CHECK) macro.
>>
>> Signed-off-by: Pali Rohár <pali@kernel.org>
> 
> Reviewed-by: Stefan Roese <sr@denx.de>

Applied to u-boot-marvell/next

Thanks,
Stefan

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

end of thread, other threads:[~2022-09-20  6:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-09-14 13:06 [PATCH] Makefile: Add missing CONFIG_BOARD_SIZE_LIMIT check for u-boot-spl.kwb Pali Rohár
2022-09-16 16:02 ` Marek Behún
2022-09-19  7:02 ` Stefan Roese
2022-09-20  6:57   ` Stefan Roese

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