All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] MIPS: Fix vmlinuz build when ZBOOT is selected
@ 2018-01-16  3:29 Daniel Sabogal
  2018-01-16 21:42   ` James Hogan
  2018-02-01 11:57 ` James Hogan
  0 siblings, 2 replies; 4+ messages in thread
From: Daniel Sabogal @ 2018-01-16  3:29 UTC (permalink / raw)
  To: linux-mips; +Cc: ralf

vmlinuz is not built by default for platforms using
COMPRESSION_FNAME (e.g. Malta) due to an erroneous
check on ZBOOT

Signed-off-by: Daniel Sabogal <dsabogalcc@gmail.com>
---
 arch/mips/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/mips/Makefile b/arch/mips/Makefile
index 9f6a26d72f9f..0f20f84de53b 100644
--- a/arch/mips/Makefile
+++ b/arch/mips/Makefile
@@ -228,7 +228,7 @@ libs-y				+= arch/mips/fw/lib/
 #
 # Kernel compression
 #
-ifdef SYS_SUPPORTS_ZBOOT
+ifdef CONFIG_SYS_SUPPORTS_ZBOOT
 COMPRESSION_FNAME		= vmlinuz
 else
 COMPRESSION_FNAME		= vmlinux
-- 
2.15.0

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

* Re: [PATCH] MIPS: Fix vmlinuz build when ZBOOT is selected
@ 2018-01-16 21:42   ` James Hogan
  0 siblings, 0 replies; 4+ messages in thread
From: James Hogan @ 2018-01-16 21:42 UTC (permalink / raw)
  To: Daniel Sabogal; +Cc: linux-mips, ralf

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

On Mon, Jan 15, 2018 at 10:29:54PM -0500, Daniel Sabogal wrote:
> vmlinuz is not built by default for platforms using
> COMPRESSION_FNAME (e.g. Malta) due to an erroneous
> check on ZBOOT
> 
> Signed-off-by: Daniel Sabogal <dsabogalcc@gmail.com>

Reviewed-by: James Hogan <jhogan@kernel.org>

Cheers
James

> ---
>  arch/mips/Makefile | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/mips/Makefile b/arch/mips/Makefile
> index 9f6a26d72f9f..0f20f84de53b 100644
> --- a/arch/mips/Makefile
> +++ b/arch/mips/Makefile
> @@ -228,7 +228,7 @@ libs-y				+= arch/mips/fw/lib/
>  #
>  # Kernel compression
>  #
> -ifdef SYS_SUPPORTS_ZBOOT
> +ifdef CONFIG_SYS_SUPPORTS_ZBOOT
>  COMPRESSION_FNAME		= vmlinuz
>  else
>  COMPRESSION_FNAME		= vmlinux
> -- 
> 2.15.0
> 
> 

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [PATCH] MIPS: Fix vmlinuz build when ZBOOT is selected
@ 2018-01-16 21:42   ` James Hogan
  0 siblings, 0 replies; 4+ messages in thread
From: James Hogan @ 2018-01-16 21:42 UTC (permalink / raw)
  To: Daniel Sabogal; +Cc: linux-mips, ralf

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

On Mon, Jan 15, 2018 at 10:29:54PM -0500, Daniel Sabogal wrote:
> vmlinuz is not built by default for platforms using
> COMPRESSION_FNAME (e.g. Malta) due to an erroneous
> check on ZBOOT
> 
> Signed-off-by: Daniel Sabogal <dsabogalcc@gmail.com>

Reviewed-by: James Hogan <jhogan@kernel.org>

Cheers
James

> ---
>  arch/mips/Makefile | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/mips/Makefile b/arch/mips/Makefile
> index 9f6a26d72f9f..0f20f84de53b 100644
> --- a/arch/mips/Makefile
> +++ b/arch/mips/Makefile
> @@ -228,7 +228,7 @@ libs-y				+= arch/mips/fw/lib/
>  #
>  # Kernel compression
>  #
> -ifdef SYS_SUPPORTS_ZBOOT
> +ifdef CONFIG_SYS_SUPPORTS_ZBOOT
>  COMPRESSION_FNAME		= vmlinuz
>  else
>  COMPRESSION_FNAME		= vmlinux
> -- 
> 2.15.0
> 
> 

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [PATCH] MIPS: Fix vmlinuz build when ZBOOT is selected
  2018-01-16  3:29 [PATCH] MIPS: Fix vmlinuz build when ZBOOT is selected Daniel Sabogal
  2018-01-16 21:42   ` James Hogan
@ 2018-02-01 11:57 ` James Hogan
  1 sibling, 0 replies; 4+ messages in thread
From: James Hogan @ 2018-02-01 11:57 UTC (permalink / raw)
  To: Daniel Sabogal; +Cc: linux-mips, ralf

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

On Mon, Jan 15, 2018 at 10:29:54PM -0500, Daniel Sabogal wrote:
> vmlinuz is not built by default for platforms using
> COMPRESSION_FNAME (e.g. Malta) due to an erroneous
> check on ZBOOT
> 
> Signed-off-by: Daniel Sabogal <dsabogalcc@gmail.com>

I've already applied this to my 4.16 branch,

Thanks
James

> ---
>  arch/mips/Makefile | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/mips/Makefile b/arch/mips/Makefile
> index 9f6a26d72f9f..0f20f84de53b 100644
> --- a/arch/mips/Makefile
> +++ b/arch/mips/Makefile
> @@ -228,7 +228,7 @@ libs-y				+= arch/mips/fw/lib/
>  #
>  # Kernel compression
>  #
> -ifdef SYS_SUPPORTS_ZBOOT
> +ifdef CONFIG_SYS_SUPPORTS_ZBOOT
>  COMPRESSION_FNAME		= vmlinuz
>  else
>  COMPRESSION_FNAME		= vmlinux
> -- 
> 2.15.0
> 
> 

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

end of thread, other threads:[~2018-02-01 11:58 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-16  3:29 [PATCH] MIPS: Fix vmlinuz build when ZBOOT is selected Daniel Sabogal
2018-01-16 21:42 ` James Hogan
2018-01-16 21:42   ` James Hogan
2018-02-01 11:57 ` James Hogan

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.