MIPS: Fix vmlinuz build when ZBOOT is selected
"Linux Kernel Mailing List" <[email protected]>
| Newsgroups | gmane.linux.kernel.commits.head |
|---|---|
| Message-ID | <[email protected]> |
Web: https://git.kernel.org/torvalds/c/809769a8f0676e3b70f6a7f4b74070bbd8002a2a Commit: 809769a8f0676e3b70f6a7f4b74070bbd8002a2a Parent: 7d8c6d6a180ae776070d26dc58f3ecb5560f9a48 Refname: refs/heads/master Author: Daniel Sabogal <[email protected]> AuthorDate: Mon Jan 15 22:29:54 2018 -0500 Committer: James Hogan <[email protected]> CommitDate: Thu Jan 18 21:52:04 2018 +0000 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 <[email protected]> Reviewed-by: James Hogan <[email protected]> Cc: Ralf Baechle <[email protected]> Cc: [email protected] Patchwork: https://patchwork.linux-mips.org/patch/18466/ Signed-off-by: James Hogan <[email protected]> --- 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 -- To unsubscribe from this list: send the line "unsubscribe git-commits-head" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html