diff options
author | YunQiang Su <yunqiang.su@cipunited.com> | 2021-12-22 13:43:45 +0000 |
---|---|---|
committer | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 2022-01-02 14:17:00 +0100 |
commit | 31b2f3dc851c65fee288612432c4fc956f1a264e (patch) | |
tree | 49b333e43f25acaf21dd5f54593674bb61c33d50 /arch/mips | |
parent | 408bd9ddc2476c2de80ae88cdd3c74717e86ef91 (diff) | |
download | linux-31b2f3dc851c65fee288612432c4fc956f1a264e.tar.bz2 |
MIPS: enable both vmlinux.gz.itb and vmlinuz for generic
vmlinux.gz.itb should be appended to all-$(CONFIG_MIPS_GENERIC)
instead of replacing. Otherwise, no vmlinuz will be built.
Signed-off-by: YunQiang Su <yunqiang.su@cipunited.com>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/generic/Platform | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/generic/Platform b/arch/mips/generic/Platform index e1abc113b409..d7c8cff6de2c 100644 --- a/arch/mips/generic/Platform +++ b/arch/mips/generic/Platform @@ -14,7 +14,7 @@ cflags-$(CONFIG_MIPS_GENERIC) += -I$(srctree)/arch/mips/include/asm/mach-generic load-$(CONFIG_MIPS_GENERIC) += 0xffffffff80100000 zload-$(CONFIG_MIPS_GENERIC) += 0xffffffff81000000 -all-$(CONFIG_MIPS_GENERIC) := vmlinux.gz.itb +all-$(CONFIG_MIPS_GENERIC) += vmlinux.gz.itb its-y := vmlinux.its.S its-$(CONFIG_FIT_IMAGE_FDT_BOSTON) += board-boston.its.S |