diff options
author | Wu Zhangjin <wuzhangjin@gmail.com> | 2010-11-09 11:26:34 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2013-10-29 16:24:21 -0400 |
commit | 007fbbea9fc0ab667b0e873e8985698a3701b4e8 (patch) | |
tree | a699fc2cab5745e4bd009bf6e12c5b6c2f5628c9 /arch/mips/Makefile | |
parent | f7777dcc7550531ae551f544bdc391c65d0e1731 (diff) |
MIPS: Quiet the building output of vmlinux.32 and vmlinux.64
Based on quiet_cmd_X and cmd_X, this patch quiets the building output of
vmlinux.32 and vmlinux.64.
Signed-off-by: Wu Zhangjin <wuzhangjin@gmail.com>
Cc: linux-mips@linux-mips.org
Cc: Sam Ravnborg <sam@ravnborg.org>
Patchwork: https://patchwork.linux-mips.org/patch/1766/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/Makefile')
-rw-r--r-- | arch/mips/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/arch/mips/Makefile b/arch/mips/Makefile index ca8f8340d75f..f9a0c30976a5 100644 --- a/arch/mips/Makefile +++ b/arch/mips/Makefile | |||
@@ -285,15 +285,19 @@ endif | |||
285 | # Other need ECOFF, so we build a 32-bit ELF binary for them which we then | 285 | # Other need ECOFF, so we build a 32-bit ELF binary for them which we then |
286 | # convert to ECOFF using elf2ecoff. | 286 | # convert to ECOFF using elf2ecoff. |
287 | # | 287 | # |
288 | quiet_cmd_32 = OBJCOPY $@ | ||
289 | cmd_32 = $(OBJCOPY) -O $(32bit-bfd) $(OBJCOPYFLAGS) $< $@ | ||
288 | vmlinux.32: vmlinux | 290 | vmlinux.32: vmlinux |
289 | $(OBJCOPY) -O $(32bit-bfd) $(OBJCOPYFLAGS) $< $@ | 291 | $(call cmd,32) |
290 | 292 | ||
291 | # | 293 | # |
292 | # The 64-bit ELF tools are pretty broken so at this time we generate 64-bit | 294 | # The 64-bit ELF tools are pretty broken so at this time we generate 64-bit |
293 | # ELF files from 32-bit files by conversion. | 295 | # ELF files from 32-bit files by conversion. |
294 | # | 296 | # |
297 | quiet_cmd_64 = OBJCOPY $@ | ||
298 | cmd_64 = $(OBJCOPY) -O $(64bit-bfd) $(OBJCOPYFLAGS) $< $@ | ||
295 | vmlinux.64: vmlinux | 299 | vmlinux.64: vmlinux |
296 | $(OBJCOPY) -O $(64bit-bfd) $(OBJCOPYFLAGS) $< $@ | 300 | $(call cmd,64) |
297 | 301 | ||
298 | all: $(all-y) | 302 | all: $(all-y) |
299 | 303 | ||