]> Git Repo - linux.git/commitdiff
sh: Fix uImage load address in 32-bit mode.
authorChris Smith <[email protected]>
Fri, 5 Sep 2008 07:24:13 +0000 (16:24 +0900)
committerPaul Mundt <[email protected]>
Mon, 8 Sep 2008 01:35:04 +0000 (10:35 +0900)
Fix "make uImage" load and entry addresses in 32-bit mode.

Signed-off-by: Chris Smith <[email protected]>
Signed-off-by: Paul Mundt <[email protected]>
arch/sh/boot/Makefile

index 5b54965eef9819779613856a572311c928b386cd..c16ccd4bfa16ac4b424e1032ada796f75ea88e32 100644 (file)
@@ -33,10 +33,16 @@ $(obj)/zImage: $(obj)/compressed/vmlinux FORCE
 $(obj)/compressed/vmlinux: FORCE
        $(Q)$(MAKE) $(build)=$(obj)/compressed $@
 
+ifeq ($(CONFIG_32BIT),y)
+KERNEL_LOAD    := $(shell /bin/bash -c 'printf "0x%08x" \
+                    $$[$(CONFIG_PAGE_OFFSET)  + \
+                       $(CONFIG_ZERO_PAGE_OFFSET)]')
+else
 KERNEL_LOAD    := $(shell /bin/bash -c 'printf "0x%08x" \
                     $$[$(CONFIG_PAGE_OFFSET)  + \
                        $(CONFIG_MEMORY_START) + \
                        $(CONFIG_ZERO_PAGE_OFFSET)]')
+endif
 
 KERNEL_ENTRY   := $(shell /bin/bash -c 'printf "0x%08x" \
                     $$[$(CONFIG_PAGE_OFFSET)  + \
This page took 0.054828 seconds and 4 git commands to generate.