diff options
Diffstat (limited to 'arch/sh/boot/Makefile')
-rw-r--r-- | arch/sh/boot/Makefile | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/arch/sh/boot/Makefile b/arch/sh/boot/Makefile index 743ce0c8d98d..1ce63624c9b9 100644 --- a/arch/sh/boot/Makefile +++ b/arch/sh/boot/Makefile | |||
@@ -46,15 +46,8 @@ $(obj)/romImage: $(obj)/romimage/vmlinux FORCE | |||
46 | $(obj)/romimage/vmlinux: $(obj)/zImage FORCE | 46 | $(obj)/romimage/vmlinux: $(obj)/zImage FORCE |
47 | $(Q)$(MAKE) $(build)=$(obj)/romimage $@ | 47 | $(Q)$(MAKE) $(build)=$(obj)/romimage $@ |
48 | 48 | ||
49 | KERNEL_MEMORY := 0x00000000 | 49 | KERNEL_MEMORY := $(shell /bin/bash -c 'printf "0x%08x" \ |
50 | ifeq ($(CONFIG_PMB_FIXED),y) | ||
51 | KERNEL_MEMORY := $(shell /bin/bash -c 'printf "0x%08x" \ | ||
52 | $$[$(CONFIG_MEMORY_START) & 0x1fffffff]') | 50 | $$[$(CONFIG_MEMORY_START) & 0x1fffffff]') |
53 | endif | ||
54 | ifeq ($(CONFIG_29BIT),y) | ||
55 | KERNEL_MEMORY := $(shell /bin/bash -c 'printf "0x%08x" \ | ||
56 | $$[$(CONFIG_MEMORY_START)]') | ||
57 | endif | ||
58 | 51 | ||
59 | KERNEL_LOAD := $(shell /bin/bash -c 'printf "0x%08x" \ | 52 | KERNEL_LOAD := $(shell /bin/bash -c 'printf "0x%08x" \ |
60 | $$[$(CONFIG_PAGE_OFFSET) + \ | 53 | $$[$(CONFIG_PAGE_OFFSET) + \ |