From e66f1292aa88ba6db04fab07836cf70db28b9b93 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sat, 10 Jan 2015 15:26:38 +0000 Subject: [PATCH] ramips: simplify mkimage kernel loadaddr/entry handling Signed-off-by: Felix Fietkau SVN-Revision: 43906 --- target/linux/ramips/image/Makefile | 20 ++++---------------- 1 file changed, 4 insertions(+), 16 deletions(-) diff --git a/target/linux/ramips/image/Makefile b/target/linux/ramips/image/Makefile index e4effa6f5c..18c1330bf6 100644 --- a/target/linux/ramips/image/Makefile +++ b/target/linux/ramips/image/Makefile @@ -22,21 +22,9 @@ define Image/Build/Initramfs $(call Image/Build/Profile/$(PROFILE),initramfs) endef -ifeq ($(CONFIG_SOC_RT288X),y) -define kernel_entry --a 0x88000000 -e 0x88000000 -endef -else -ifeq ($(CONFIG_SOC_MT7621),y) -define kernel_entry --a 0x80001000 -e 0x80001000 -endef -else -define kernel_entry --a 0x80000000 -e 0x80000000 -endef -endif -endif +loadaddr-y := 0x80000000 +loadaddr-$(CONFIG_TARGET_ramips_rt288x) := 0x88000000 +loadaddr-$(CONFIG_TARGET_ramips_mt7621) := 0x80001000 define MkCombineduImage $(call PatchKernelLzma,$(2),$(3)) @@ -59,7 +47,7 @@ endef # $(3), output filename define MkImage $(eval imagename=$(if $(4),$(4),MIPS OpenWrt Linux-$(LINUX_VERSION))) - -mkimage -A mips -O linux -T kernel -C $(1) $(call kernel_entry)\ + -mkimage -A mips -O linux -T kernel -C $(1) -a $(loadaddr-y) -e $(loadaddr-y) \ -n "$(imagename)" \ -d $(2) $(3) endef