diff options
author | Daniel Sabogal <dsabogalcc@gmail.com> | 2018-01-16 06:29:54 +0300 |
---|---|---|
committer | James Hogan <jhogan@kernel.org> | 2018-01-19 00:52:04 +0300 |
commit | 809769a8f0676e3b70f6a7f4b74070bbd8002a2a (patch) | |
tree | 8674bdcf083d47bcec1aaa937ae481318154244a /arch | |
parent | 7d8c6d6a180ae776070d26dc58f3ecb5560f9a48 (diff) | |
download | linux-809769a8f0676e3b70f6a7f4b74070bbd8002a2a.tar.xz |
MIPS: Fix vmlinuz build when ZBOOT is selected
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>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/18466/
Signed-off-by: James Hogan <jhogan@kernel.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mips/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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 |