From: Paul Mundt Date: Mon, 17 Dec 2007 07:08:49 +0000 (+0900) Subject: sh: Fix up KERNEL_ENTRY calculation for uImage. X-Git-Tag: upstream/snapshot3+hdmi~28350^2~30 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6fc5153aab2a6eb23e636d962e1aceaabd0dfb12;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git sh: Fix up KERNEL_ENTRY calculation for uImage. Signed-off-by: Paul Mundt --- diff --git a/arch/sh/boot/Makefile b/arch/sh/boot/Makefile index 4b3a6f1..59f552c 100644 --- a/arch/sh/boot/Makefile +++ b/arch/sh/boot/Makefile @@ -38,8 +38,9 @@ KERNEL_LOAD := $(shell /bin/bash -c 'printf "0x%8x" \ $(CONFIG_ZERO_PAGE_OFFSET)]') KERNEL_ENTRY := $(shell /bin/bash -c 'printf "0x%8x" \ - $$[$(KERNEL_LOAD)+0x1000]') - + $$[$(CONFIG_PAGE_OFFSET) + \ + $(CONFIG_MEMORY_START) + \ + $(CONFIG_ZERO_PAGE_OFFSET)+0x1000]') quiet_cmd_uimage = UIMAGE $@ cmd_uimage = $(CONFIG_SHELL) $(MKIMAGE) -A sh -O linux -T kernel \