diff options
author | Nicolas Thill <nico@openwrt.org> | 2007-09-06 19:35:08 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2007-09-06 19:35:08 +0000 |
commit | 6e0a34151b8e6dfd4a747875a411f28e3e3ddf57 (patch) | |
tree | 66e66194ab2d23f789cf674b60a561fbccefc379 /target/linux/ar7/image/Makefile | |
parent | 06f0f49199f47f5e03fecd4854c0b739fdfcbaca (diff) | |
download | upstream-6e0a34151b8e6dfd4a747875a411f28e3e3ddf57.tar.gz upstream-6e0a34151b8e6dfd4a747875a411f28e3e3ddf57.tar.bz2 upstream-6e0a34151b8e6dfd4a747875a411f28e3e3ddf57.zip |
cosmetic fixes for ar7: indent, use lowercase hex notation, format
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8656 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar7/image/Makefile')
-rw-r--r-- | target/linux/ar7/image/Makefile | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/target/linux/ar7/image/Makefile b/target/linux/ar7/image/Makefile index 27af165533..b80af35408 100644 --- a/target/linux/ar7/image/Makefile +++ b/target/linux/ar7/image/Makefile @@ -7,20 +7,22 @@ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/image.mk -DROP_SECTIONS := .reginfo .mdebug .comment .note .pdr .options .MIPS.options -OBJCOPY_SREC := $(TARGET_CROSS)objcopy -S -O srec $(addprefix --remove-section=,$(DROP_SECTIONS)) +DROP_SECTIONS:=.reginfo .mdebug .comment .note .pdr .options .MIPS.options +OBJCOPY_SREC:=$(TARGET_CROSS)objcopy -S -O srec $(addprefix --remove-section=,$(DROP_SECTIONS)) -LOADADDR := 0x94600000 -KERNEL_ENTRY := 0x94100000 -RAMSTART := 0x94000000 -RAMSIZE := 0x00100000 +LOADADDR:=0x94600000 +KERNEL_ENTRY:=0x94100000 +RAMSTART:=0x94000000 +RAMSIZE:=0x00100000 + +EVA_LOADADDR := 0x94100000 LOADER_MAKEOPTS= \ - KDIR=$(KDIR) \ - LOADADDR=$(LOADADDR) \ - KERNEL_ENTRY=$(KERNEL_ENTRY) \ - RAMSTART=$(RAMSTART) \ - RAMSIZE=$(RAMSIZE) + KDIR=$(KDIR) \ + LOADADDR=$(LOADADDR) \ + KERNEL_ENTRY=$(KERNEL_ENTRY) \ + RAMSTART=$(RAMSTART) \ + RAMSIZE=$(RAMSIZE) CFLAGS := -D__KERNEL__ -Wall -Wstrict-prototypes -Wno-trigraphs -Os \ -fno-strict-aliasing -fno-common -fomit-frame-pointer -G 0 -mno-abicalls -fno-pic \ |