diff options
author | Alex Smith <alex.smith@imgtec.com> | 2015-08-18 10:03:10 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2015-09-03 06:08:15 -0400 |
commit | fb2646ab032d12ef06225c64768691c7ecc500ec (patch) | |
tree | 7f9829a862b9a46889abc57339805bceea90b7d3 | |
parent | 65ab562cabe01d524ec6b50f37694200745c21c1 (diff) |
MIPS: Fix alignment of quiet build output for vmlinuz link
The "LD vmlinuz" line in the quiet build output is misaligned with the
rest of the output. Fix this.
Signed-off-by: Alex Smith <alex.smith@imgtec.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/11019/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | arch/mips/boot/compressed/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/boot/compressed/Makefile b/arch/mips/boot/compressed/Makefile index dc91bde10d62..d5bdee115f22 100644 --- a/arch/mips/boot/compressed/Makefile +++ b/arch/mips/boot/compressed/Makefile | |||
@@ -78,7 +78,7 @@ endif | |||
78 | 78 | ||
79 | vmlinuzobjs-y += $(obj)/piggy.o | 79 | vmlinuzobjs-y += $(obj)/piggy.o |
80 | 80 | ||
81 | quiet_cmd_zld = LD $@ | 81 | quiet_cmd_zld = LD $@ |
82 | cmd_zld = $(LD) $(LDFLAGS) -Ttext $(VMLINUZ_LOAD_ADDRESS) -T $< $(vmlinuzobjs-y) -o $@ | 82 | cmd_zld = $(LD) $(LDFLAGS) -Ttext $(VMLINUZ_LOAD_ADDRESS) -T $< $(vmlinuzobjs-y) -o $@ |
83 | quiet_cmd_strip = STRIP $@ | 83 | quiet_cmd_strip = STRIP $@ |
84 | cmd_strip = $(STRIP) -s $@ | 84 | cmd_strip = $(STRIP) -s $@ |