| To: | Ralf Baechle <ralf@linux-mips.org> |
|---|---|
| Subject: | [PATCH -queue 1/2] MIPS: Cleanup the Makefile of compressed kernel support |
| From: | Wu Zhangjin <wuzhangjin@gmail.com> |
| Date: | Tue, 26 Jan 2010 17:04:02 +0800 |
| Cc: | linux-mips@linux-mips.org, Wu Zhangjin <wuzhangjin@gmail.com> |
| Dkim-signature: | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:date :message-id:x-mailer; bh=lb5QwB9y0AEmKwc2k7t9gJSJag7lBgXvBHSlTP4/DeY=; b=Xl0Wdmj1AbDP7DW9vJrcMhfylatycjypXnMH68OgSlbb4d+f/Gws8B2uILCgh93EMo klMxmy9ayEMyVwiCjPsftYfRMPKE+Ayu8c5l1rpU3pJWAuUnkyzIch8MOoM262WieuGo CmvQK3apv9+XX/ZLhNF/x6PFKqwtJZGlNJ5N0= |
| Domainkey-signature: | a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; b=otEM4Waj2EePntDp2PR6la+X9PKC0GHyhpdoB4yoyKxqI5oIlwOWdOxQogzc7aiGAU QStDBEHdEjO803eSxmRV2cwK0IRgXzpxiqAaUqn+WtSeYEHiWqwvHjNHTHqLecJ+72rJ kGEhWf2Bmfl9oZE69EUaPtz7KH2rETWg+ZU+o= |
| Sender: | linux-mips-bounce@linux-mips.org |
This patch removes a useless "\" (line break) and tunes the format of a long line. Signed-off-by: Wu Zhangjin <wuzhangjin@gmail.com> --- arch/mips/boot/compressed/Makefile | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/mips/boot/compressed/Makefile b/arch/mips/boot/compressed/Makefile index 46a4537..91a57a6 100644 --- a/arch/mips/boot/compressed/Makefile +++ b/arch/mips/boot/compressed/Makefile @@ -24,11 +24,11 @@ BOOT_HEAP_SIZE := 0x400000 KBUILD_CFLAGS := $(shell echo $(KBUILD_CFLAGS) | sed -e "s/-pg//") KBUILD_CFLAGS := $(LINUXINCLUDE) $(KBUILD_CFLAGS) -D__KERNEL__ \ - -DBOOT_HEAP_SIZE=$(BOOT_HEAP_SIZE) -D"VMLINUX_LOAD_ADDRESS_ULL=$(VMLINUX_LOAD_ADDRESS)ull" \ + -DBOOT_HEAP_SIZE=$(BOOT_HEAP_SIZE) -D"VMLINUX_LOAD_ADDRESS_ULL=$(VMLINUX_LOAD_ADDRESS)ull" KBUILD_AFLAGS := $(LINUXINCLUDE) $(KBUILD_AFLAGS) -D__ASSEMBLY__ \ - -DKERNEL_ENTRY=0x$(shell $(NM) $(objtree)/$(KBUILD_IMAGE) 2>/dev/null | grep " kernel_entry" | cut -f1 -d \ ) \ - -DBOOT_HEAP_SIZE=$(BOOT_HEAP_SIZE) + -DBOOT_HEAP_SIZE=$(BOOT_HEAP_SIZE) \ + -DKERNEL_ENTRY=0x$(shell $(NM) $(objtree)/$(KBUILD_IMAGE) 2>/dev/null | grep " kernel_entry" | cut -f1 -d \ ) obj-y := $(obj)/head.o $(obj)/decompress.o $(obj)/dbg.o -- 1.6.6 |
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [PATCH] MIPS: msp71xx: remove unused prom_getcmdline(), Yoichi Yuasa |
|---|---|
| Next by Date: | [PATCH -queue 2/2] MIPS: Cleanup the debugging of compressed kernel support, Wu Zhangjin |
| Previous by Thread: | [PATCH] MIPS: msp71xx: remove unused prom_getcmdline(), Yoichi Yuasa |
| Next by Thread: | [PATCH -queue 2/2] MIPS: Cleanup the debugging of compressed kernel support, Wu Zhangjin |
| Indexes: | [Date] [Thread] [Top] [All Lists] |