diff options
Diffstat (limited to 'arch/mips/boot')
-rw-r--r-- | arch/mips/boot/compressed/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/mips/boot/compressed/Makefile b/arch/mips/boot/compressed/Makefile index 583149043293..ed9bb709c9a3 100644 --- a/arch/mips/boot/compressed/Makefile +++ b/arch/mips/boot/compressed/Makefile | |||
@@ -65,8 +65,11 @@ vmlinuzobjs-y += $(obj)/piggy.o | |||
65 | 65 | ||
66 | quiet_cmd_zld = LD $@ | 66 | quiet_cmd_zld = LD $@ |
67 | cmd_zld = $(LD) $(LDFLAGS) -Ttext $(VMLINUZ_LOAD_ADDRESS) -T $< $(vmlinuzobjs-y) -o $@ | 67 | cmd_zld = $(LD) $(LDFLAGS) -Ttext $(VMLINUZ_LOAD_ADDRESS) -T $< $(vmlinuzobjs-y) -o $@ |
68 | quiet_cmd_strip = STRIP $@ | ||
69 | cmd_strip = $(STRIP) -s $@ | ||
68 | vmlinuz: $(src)/ld.script $(vmlinuzobjs-y) $(obj)/calc_vmlinuz_load_addr | 70 | vmlinuz: $(src)/ld.script $(vmlinuzobjs-y) $(obj)/calc_vmlinuz_load_addr |
69 | $(call cmd,zld) | 71 | $(call cmd,zld) |
72 | $(call cmd,strip) | ||
70 | 73 | ||
71 | # | 74 | # |
72 | # Some DECstations need all possible sections of an ECOFF executable | 75 | # Some DECstations need all possible sections of an ECOFF executable |