diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2021-01-17 12:16:31 +0100 |
---|---|---|
committer | Rich Felker <dalias@libc.org> | 2021-09-17 20:00:04 +0200 |
commit | 7b6ef6e570eab9714f9b2374e0bad179bff99fdd (patch) | |
tree | 91400ad5eebc25022fcd5f22eb2f6c1758e61e72 | |
parent | sh: boards: Fix the cacography in irq.c (diff) | |
download | linux-7b6ef6e570eab9714f9b2374e0bad179bff99fdd.tar.xz linux-7b6ef6e570eab9714f9b2374e0bad179bff99fdd.zip |
sh: boot: add intermediate vmlinux.bin* to targets instead of extra-y
You do not need to build all of vmlinux.bin*
They are built on demand as prerequsites of uImage.bin*, hence should
be added to targets instead of extra-y.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Tested-by: John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
Signed-off-by: Rich Felker <dalias@libc.org>
-rw-r--r-- | arch/sh/boot/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sh/boot/Makefile b/arch/sh/boot/Makefile index 58592dfa5cb6..dded61296c9a 100644 --- a/arch/sh/boot/Makefile +++ b/arch/sh/boot/Makefile @@ -27,8 +27,8 @@ suffix-$(CONFIG_KERNEL_XZ) := xz suffix-$(CONFIG_KERNEL_LZO) := lzo targets := zImage vmlinux.srec romImage uImage uImage.srec uImage.gz \ - uImage.bz2 uImage.lzma uImage.xz uImage.lzo uImage.bin -extra-y += vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 vmlinux.bin.lzma \ + uImage.bz2 uImage.lzma uImage.xz uImage.lzo uImage.bin \ + vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 vmlinux.bin.lzma \ vmlinux.bin.xz vmlinux.bin.lzo subdir- := compressed romimage |